]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Replacing 'existance' with 'existence' on the 2.16 branch to fix spelling mistakes...
authorjocuri%softhome.net <>
Fri, 16 Apr 2004 00:48:51 +0000 (00:48 +0000)
committerjocuri%softhome.net <>
Fri, 16 Apr 2004 00:48:51 +0000 (00:48 +0000)
checksetup.pl
process_bug.cgi

index 7198613f20f6f8029dba3335cb03e544cb2f931a..7be7ee432dda5eda46bd426aeac952b6e8d9d489 100755 (executable)
@@ -642,8 +642,8 @@ $::ENV{'PATH'} = $origPath;
 
 # The |require "globals.pl"| above ends up creating a template object with
 # a COMPILE_DIR of 'data'. This means that TT creates the directory for us,
-# so this code wouldn't run if we just checked for the existance of the
-# directory. Instead, check for the existance of 'data/nomail', which is
+# so this code wouldn't run if we just checked for the existence of the
+# directory. Instead, check for the existence of 'data/nomail', which is
 # created in this block
 unless (-d 'data' && -e 'data/nomail') {
     print "Creating data directory ...\n";
index 939e6323602ee4c85112bb856030ac06106915ca..5f5d9ba8fc9d7884af1120906f11c2cb21cb9033 100755 (executable)
@@ -1289,7 +1289,7 @@ foreach my $id (@idlist) {
         SendSQL("SELECT who FROM cc WHERE bug_id = " . SqlQuote($duplicate) . " and who = $reporter");
         my $isoncc = FetchOneColumn();
         unless ($isreporter || $isoncc || ! $::FORM{'confirm_add_duplicate'}) {
-            # The reporter is oblivious to the existance of the new bug and is permitted access
+            # The reporter is oblivious to the existence of the new bug and is permitted access
             # ... add 'em to the cc (and record activity)
             LogActivityEntry($duplicate,"cc","",DBID_to_name($reporter));
             SendSQL("INSERT INTO cc (who, bug_id) VALUES ($reporter, " . SqlQuote($duplicate) . ")");