From b259c4b4252cde8e7926690f6ba419d2ee7c59fc Mon Sep 17 00:00:00 2001 From: "bbaetz%acm.org" <> Date: Wed, 2 Apr 2003 20:35:00 +0000 Subject: Bug 199813 - Make all users of ThrowUserError pass $vars in explicitly. r=gerv a=justdave --- globals.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'globals.pl') diff --git a/globals.pl b/globals.pl index ae656d9ec..38833ce15 100644 --- a/globals.pl +++ b/globals.pl @@ -127,7 +127,6 @@ sub AppendComment { # zero or more digits, OR we have a period followed by one or more digits if ($work_time !~ /^-?(?:\d+(?:\.\d*)?|\.\d+)$/) { ThrowUserError("need_numeric_value"); - return; } } else { $work_time = 0 }; @@ -863,8 +862,8 @@ sub DBNameToIdAndCheck { return $result; } - $::vars->{'name'} = $name; - ThrowUserError("invalid_username"); + ThrowUserError("invalid_username", + { name => $name }); } -- cgit v1.2.3-24-g4f1b