diff options
author | terry%mozilla.org <> | 2000-03-07 08:21:51 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-03-07 08:21:51 +0100 |
commit | 3aa7a6d7cadd8292a9917828d728ae1345b3450a (patch) | |
tree | 608b5a60c3d3eef35a0cd7046b503a0131f53577 /buglist.cgi | |
parent | 0effcbcf51b490c93cc8467bab199d7e8bbe85fa (diff) | |
download | bugzilla-3aa7a6d7cadd8292a9917828d728ae1345b3450a.tar.gz bugzilla-3aa7a6d7cadd8292a9917828d728ae1345b3450a.tar.xz |
Fixed very stupid typo.
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index cd41ce682..43d46c7ea 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -1292,7 +1292,7 @@ if ($::usergroupset ne '0' && $buggroupset =~ /^\d+$/) { <INPUT TYPE=radio NAME=knob VALUE=none CHECKED> Do nothing else<br>"; $knum++; - if ($statushash{$::unconfirmedstate} && 1 == scaler(keys(%statushash))) { + if ($statushash{$::unconfirmedstate} && 1 == scalar(keys(%statushash))) { print " <INPUT TYPE=radio NAME=knob VALUE=confirm> Confirm bugs (change status to <b>NEW</b>)<br>"; |