diff options
author | terry%mozilla.org <> | 2000-01-20 04:24:27 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-20 04:24:27 +0100 |
commit | 72a25ca7a281804faa378f384f3a1ddfadaae6e6 (patch) | |
tree | 9ab9238eb32700d21b7444c79873b7cbf27837fd /editkeywords.cgi | |
parent | 17fc03c80dbd04261a1ba1c4cd343ae1997657ea (diff) | |
download | bugzilla-72a25ca7a281804faa378f384f3a1ddfadaae6e6.tar.gz bugzilla-72a25ca7a281804faa378f384f3a1ddfadaae6e6.tar.xz |
Let's outlaw whitespace in keywords.
Diffstat (limited to 'editkeywords.cgi')
-rwxr-xr-x | editkeywords.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editkeywords.cgi b/editkeywords.cgi index 72fe78bf0..3443a5c3f 100755 --- a/editkeywords.cgi +++ b/editkeywords.cgi @@ -88,8 +88,8 @@ sub Validate ($$) { PutTrailer($localtrailer); exit; } - if ($name =~ /,/) { - print "You may not use commas in a keyword name.\n"; + if ($name =~ /[\s,]/) { + print "You may not use commas or whitespace in a keyword name.\n"; print "Please press <b>Back</b> and try again.\n"; PutTrailer($localtrailer); exit; |