From: lpsolit%gmail.com <> Date: Wed, 26 Oct 2005 02:14:19 +0000 (+0000) Subject: Bug 313603: The keyword_already_exists error has an undefined variable - Patch by... X-Git-Tag: bugzilla-2.20.1~111 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1d1ada1d6ac6ef2ddc3e12c11274b556abe3e2e;p=thirdparty%2Fbugzilla.git Bug 313603: The keyword_already_exists error has an undefined variable - Patch by Frédéric Buclin r=wurblzap a=myk --- diff --git a/editkeywords.cgi b/editkeywords.cgi index 8ad74710e8..a614e73146 100755 --- a/editkeywords.cgi +++ b/editkeywords.cgi @@ -124,7 +124,7 @@ if ($action eq 'new') { if (FetchOneColumn()) { $vars->{'name'} = $name; - ThrowUserError("keyword_already_exists"); + ThrowUserError("keyword_already_exists", $vars); }