summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Util.pm
diff options
context:
space:
mode:
authortimeless%mozdev.org <>2005-11-26 06:57:06 +0100
committertimeless%mozdev.org <>2005-11-26 06:57:06 +0100
commit1e24933322d4fd449ef35e96f6cfdb15400c9c53 (patch)
tree392e8a7d20157c615251ca5630522df92f6f1f2e /Bugzilla/Util.pm
parent320d2aa13e79d2d3ef938bf9f12b3c931a8bb3f7 (diff)
downloadbugzilla-1e24933322d4fd449ef35e96f6cfdb15400c9c53.tar.gz
bugzilla-1e24933322d4fd449ef35e96f6cfdb15400c9c53.tar.xz
Bug 106386 Correct misspellings in source code
patch by unknown@simplemachines.org r=timeless rs=brendan
Diffstat (limited to 'Bugzilla/Util.pm')
-rw-r--r--Bugzilla/Util.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm
index 3a9d6dae7..21885bbdc 100644
--- a/Bugzilla/Util.pm
+++ b/Bugzilla/Util.pm
@@ -94,7 +94,7 @@ sub html_quote {
return $var;
}
-# This orignally came from CGI.pm, by Lincoln D. Stein
+# This originally came from CGI.pm, by Lincoln D. Stein
sub url_quote {
my ($toencode) = (@_);
$toencode =~ s/([^a-zA-Z0-9_\-.])/uc sprintf("%%%02x",ord($1))/eg;