From: jocuri%softhome.net <> Date: Fri, 16 Apr 2004 00:48:51 +0000 (+0000) Subject: Replacing 'existance' with 'existence' on the 2.16 branch to fix spelling mistakes... X-Git-Tag: bugzilla-2.16.6~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf2a7895c3c35cb394794477dc9f92d9879a1c5f;p=thirdparty%2Fbugzilla.git Replacing 'existance' with 'existence' on the 2.16 branch to fix spelling mistakes; a=justdave. --- diff --git a/checksetup.pl b/checksetup.pl index 7198613f20..7be7ee432d 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -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"; diff --git a/process_bug.cgi b/process_bug.cgi index 939e632360..5f5d9ba8fc 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -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) . ")");