summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorbbaetz%acm.org <>2003-04-02 22:35:00 +0200
committerbbaetz%acm.org <>2003-04-02 22:35:00 +0200
commitb259c4b4252cde8e7926690f6ba419d2ee7c59fc (patch)
treeae51804f9db83c0b1a49f79b9e0a1848cdd5e7c7 /globals.pl
parent747eb2ddd7febfa0e33ccf3797bf48db0defafcc (diff)
downloadbugzilla-b259c4b4252cde8e7926690f6ba419d2ee7c59fc.tar.gz
bugzilla-b259c4b4252cde8e7926690f6ba419d2ee7c59fc.tar.xz
Bug 199813 - Make all users of ThrowUserError pass $vars in explicitly.
r=gerv a=justdave
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl5
1 files changed, 2 insertions, 3 deletions
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 });
}