diff options
author | bugreport%peshkin.net <> | 2005-08-09 18:23:38 +0000 |
---|---|---|
committer | bugreport%peshkin.net <> | 2005-08-09 18:23:38 +0000 |
commit | 6a41ecbaec4ec4e4ed9e3b2005a7f447383b85a0 (patch) | |
tree | e8d106b301f6ffe06cbec9e521e040e721e2da83 /Bugzilla/Util.pm | |
parent | Bug 303669: Bugzilla mis-uses perl subroutine prototypes (diff) | |
download | bugzilla-6a41ecbaec4ec4e4ed9e3b2005a7f447383b85a0.tar.gz bugzilla-6a41ecbaec4ec4e4ed9e3b2005a7f447383b85a0.tar.bz2 bugzilla-6a41ecbaec4ec4e4ed9e3b2005a7f447383b85a0.zip |
Backout of bug 303669 which broke AppendComment and possibly a number
of other items.
Diffstat (limited to 'Bugzilla/Util.pm')
-rw-r--r-- | Bugzilla/Util.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm index d70bc13dd..43100b160 100644 --- a/Bugzilla/Util.pm +++ b/Bugzilla/Util.pm @@ -138,7 +138,7 @@ sub url_decode { return $todecode; } -sub i_am_cgi { +sub i_am_cgi () { # I use SERVER_SOFTWARE because it's required to be # defined for all requests in the CGI spec. return exists $ENV{'SERVER_SOFTWARE'} ? 1 : 0; @@ -221,7 +221,7 @@ sub diff_strings { return ($removed, $added); } -sub wrap_comment { +sub wrap_comment ($) { my ($comment) = @_; my $wrappedcomment = ""; @@ -245,7 +245,7 @@ sub wrap_comment { return $wrappedcomment; } -sub find_wrap_point { +sub find_wrap_point ($$) { my ($string, $maxpos) = @_; if (!$string) { return 0 } if (length($string) < $maxpos) { return length($string) } @@ -264,7 +264,7 @@ sub find_wrap_point { return $wrappoint; } -sub format_time { +sub format_time ($;$) { my ($date, $format) = @_; # If $format is undefined, try to guess the correct date format. @@ -316,7 +316,7 @@ sub format_time_decimal { return $newtime; } -sub file_mod_time { +sub file_mod_time ($) { my ($filename) = (@_); my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size, $atime,$mtime,$ctime,$blksize,$blocks) @@ -324,7 +324,7 @@ sub file_mod_time { return $mtime; } -sub bz_crypt { +sub bz_crypt ($) { my ($password) = @_; # The list of characters that can appear in a salt. Salts and hashes |