From f150a1b542c26962bb2da02fe5b5e896437186bd Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" Date: Fri, 19 Oct 2001 09:17:07 +0000 Subject: [PATCH] Fixing a stupid typo (patch by MattyT) git-svn-id: svn://10.0.0.236/branches/CUST_RES_BRANCH@105764 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/checksetup.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/webtools/bugzilla/checksetup.pl b/mozilla/webtools/bugzilla/checksetup.pl index d9074ef49c2..56084ad42cb 100755 --- a/mozilla/webtools/bugzilla/checksetup.pl +++ b/mozilla/webtools/bugzilla/checksetup.pl @@ -1750,7 +1750,7 @@ sub AddResolution ($) { $restype = 1; } - my %descriptions = { + my %descriptions = ( 'FIXED' => 'A fix for this bug is checked into the tree and tested.', 'DUPLICATE' => 'The problem is a duplicate of an existing bug. Marking a bug duplicate requires the bug number of the duplicate.', 'MOVED' => 'The bug has been moved to another Bugzilla installation.', @@ -1764,7 +1764,7 @@ sub AddResolution ($) { 'If more information appears later, please reopen the bug.', 'NOTWORTHIT' => 'The problem should be fixed in a perfect world, but this isn\'t a perfect world, so it won\'t be.', 'MISSING' => 'When a bug report can\'t be dealt with because an external resource (eg a page at a URL) is missing.' - }; + ); $description = $descriptions{$name};