diff options
author | timeless%mozdev.org <> | 2005-11-26 06:57:06 +0100 |
---|---|---|
committer | timeless%mozdev.org <> | 2005-11-26 06:57:06 +0100 |
commit | 1e24933322d4fd449ef35e96f6cfdb15400c9c53 (patch) | |
tree | 392e8a7d20157c615251ca5630522df92f6f1f2e /Bugzilla | |
parent | 320d2aa13e79d2d3ef938bf9f12b3c931a8bb3f7 (diff) | |
download | bugzilla-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')
-rw-r--r-- | Bugzilla/CGI.pm | 2 | ||||
-rw-r--r-- | Bugzilla/Config.pm | 4 | ||||
-rw-r--r-- | Bugzilla/Util.pm | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 8db65eeda..b722aee3d 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -183,7 +183,7 @@ sub multipart_start { } # The various parts of Bugzilla which create cookies don't want to have to -# pass them arround to all of the callers. Instead, store them locally here, +# pass them around to all of the callers. Instead, store them locally here, # and then output as required from |header|. sub send_cookie { my $self = shift; diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index e30d48cb9..12d26796c 100644 --- a/Bugzilla/Config.pm +++ b/Bugzilla/Config.pm @@ -192,8 +192,8 @@ sub SetParam { # sanity check the value # XXX - This runs the checks. Which would be good, except that - # check_shadowdb creates the database as a sideeffect, and so the - # checker fails the second time arround... + # check_shadowdb creates the database as a side effect, and so the + # checker fails the second time around... if ($name ne 'shadowdb' && exists $entry->{'checker'}) { my $err = $entry->{'checker'}->($value, $entry); die "Param $name is not valid: $err" unless $err eq ''; 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; |