]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 106386 Correct misspellings in source code
authortimeless%mozdev.org <>
Sat, 26 Nov 2005 05:57:06 +0000 (05:57 +0000)
committertimeless%mozdev.org <>
Sat, 26 Nov 2005 05:57:06 +0000 (05:57 +0000)
patch by unknown@simplemachines.org r=timeless rs=brendan

Bugzilla.pm
Bugzilla/CGI.pm
Bugzilla/Config.pm
Bugzilla/Util.pm
contrib/bug_email.pl
contrib/bugzilla_email_append.pl

index 5012909929398852f680e254811c5880336304ea..115d15e57561c112865caae708e7e2a56d0d6210 100644 (file)
@@ -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 *
index 8db65eedad6e6eed5fdf5993a824220ea404ac82..b722aee3d3fa0bb01bab8408b80e1dfff486fe1d 100644 (file)
@@ -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;
index e30d48cb9ab160b9f33539cc77e5739c1a8fa765..12d26796cda4453cb06d424fdec4305887d70d33 100644 (file)
@@ -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 '';
index 3a9d6dae7c9f8c9c0201e1bbe1ebeb48d219cad0..21885bbdc8f56fb0ca6b2e168394ef163b1b8e74 100644 (file)
@@ -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;
index 6844fa279e5b561a7d940bd4ffba67ef928b9826..3ff53f6bc9aa96e454eeca7c2a0ac2c3ba609069 100755 (executable)
@@ -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'} ));
index e409f08628ed99e08c32550640e83363c009e7da..abf2c0b787743eea7cc16b4a77765e1020475a69 100755 (executable)
@@ -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 );