]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 192182 - editflagtypes uses ^ instead of **
authorbbaetz%acm.org <>
Sat, 8 Feb 2003 08:54:21 +0000 (08:54 +0000)
committerbbaetz%acm.org <>
Sat, 8 Feb 2003 08:54:21 +0000 (08:54 +0000)
r,a=justdave

editflagtypes.cgi

index e02603b0a06a07bc37935c8b3c6869f987a290c1..6a23012518bc3fc70a0dafe14befb4d79e502e30 100755 (executable)
@@ -428,7 +428,7 @@ sub validateName {
 }
 
 sub validateDescription {
-    length($::FORM{'description'}) < 2^16-1
+    length($::FORM{'description'}) < 2**16-1
       || ThrowUserError("flag_type_description_invalid");
 }