From: justdave%syndicomm.com <> Date: Wed, 13 Aug 2003 01:54:16 +0000 (+0000) Subject: Bug 215962: Missing {} around implied hash reference in params to ThrowUserError X-Git-Tag: bugzilla-2.17.5~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1614ff447de8395e8866cdfef2454b76ca5246a;p=thirdparty%2Fbugzilla.git Bug 215962: Missing {} around implied hash reference in params to ThrowUserError patch by Eric Selberg r= justdave a= justdave --- diff --git a/process_bug.cgi b/process_bug.cgi index e49324f6d9..cf9abf4cb0 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -773,7 +773,7 @@ if (UserInGroup(Param('timetrackinggroup'))) { $::query .= "$field = " . SqlQuote($er_time); } else { ThrowUserError("need_positive_number", - field => $field); + {field => $field}); } } }