summaryrefslogtreecommitdiffstats
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
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
-rw-r--r--Bugzilla.pm2
-rw-r--r--Bugzilla/CGI.pm2
-rw-r--r--Bugzilla/Config.pm4
-rw-r--r--Bugzilla/Util.pm2
-rwxr-xr-xcontrib/bug_email.pl10
-rwxr-xr-xcontrib/bugzilla_email_append.pl2
6 files changed, 11 insertions, 11 deletions
diff --git a/Bugzilla.pm b/Bugzilla.pm
index 501290992..115d15e57 100644
--- a/Bugzilla.pm
+++ b/Bugzilla.pm
@@ -330,7 +330,7 @@ This approach has several advantages:
=item *
-They're not global variables, so we don't have issues with them staying arround
+They're not global variables, so we don't have issues with them staying around
with mod_perl
=item *
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;
diff --git a/contrib/bug_email.pl b/contrib/bug_email.pl
index 6844fa279..3ff53f6bc 100755
--- a/contrib/bug_email.pl
+++ b/contrib/bug_email.pl
@@ -38,7 +38,7 @@
#
# You need to work with bug_email.pl the MIME::Parser installed.
#
-# $Id: bug_email.pl,v 1.30 2005/11/25 19:47:38 timeless%mozdev.org Exp $
+# $Id: bug_email.pl,v 1.31 2005/11/25 21:57:07 timeless%mozdev.org Exp $
###############################################################
# 02/12/2000 (SML)
@@ -448,7 +448,7 @@ sub FetchAllSQLData( )
# BugMailError takes two arguments: The first one is a flag, how heavy
# the error is:
#
-# 0 - Its an error, but bugzilla can process the bug. The user should
+# 0 - It's an error, but Bugzilla can process the bug. The user should
# handle that as a warning.
#
# 1 - It's a real bug. Bugzilla can't store the bug. The mail has to be
@@ -457,7 +457,7 @@ sub FetchAllSQLData( )
# 2 - Permission error: The user does not have the permission to send
# a bug.
#
-# The second argument is a Text which describs the bug.
+# The second argument is a Text which describes the bug.
#
#
# #
@@ -747,7 +747,7 @@ my $Sender = $entity->get( 'From' );
$Sender ||= $entity->get( 'Reply-To' );
$Message_ID = $entity->get( 'Message-Id' );
-die (" *** Cant find Sender-adress in sent mail ! ***\n" ) unless defined( $Sender );
+die (" *** Can't find Sender-address in sent mail ! ***\n" ) unless defined( $Sender );
chomp( $Sender );
chomp( $Message_ID );
@@ -852,7 +852,7 @@ my $Product = $DEFAULT_PRODUCT;
$Product = CheckProduct( $Control{'product'} ) if( defined( $Control{ 'product'} ));
if ( $Product eq "" ) {
- my $Text = "You didnt send a value for the required key \@product !\n\n";
+ my $Text = "You didn't send a value for the required key \@product !\n\n";
$Text = "You sent the invalid product \"$Control{'product'}\"!\n\n"
if( defined( $Control{ 'product'} ));
diff --git a/contrib/bugzilla_email_append.pl b/contrib/bugzilla_email_append.pl
index e409f0862..abf2c0b78 100755
--- a/contrib/bugzilla_email_append.pl
+++ b/contrib/bugzilla_email_append.pl
@@ -65,7 +65,7 @@ my $Sender = $entity->get( 'From' );
$Sender ||= $entity->get( 'Reply-To' );
my $Message_ID = $entity->get( 'Message-Id' );
-die (" *** Cant find Sender-adress in sent mail ! ***\n" ) unless defined( $Sender );
+die (" *** Can't find Sender-address in sent mail ! ***\n" ) unless defined( $Sender );
chomp( $Sender );
chomp( $Message_ID );