Commit 36578f08 authored by travis%sedsystems.ca's avatar travis%sedsystems.ca

Bug 276913: Uninitialized value message from CGI.pl line 176

Patch: LpSolit@netscape.net r=mkanat a=justdave
parent e2466aae
...@@ -173,7 +173,7 @@ sub ValidateBugID { ...@@ -173,7 +173,7 @@ sub ValidateBugID {
FetchOneColumn() FetchOneColumn()
|| ThrowUserError("invalid_bug_id_non_existent", {'bug_id' => $id}); || ThrowUserError("invalid_bug_id_non_existent", {'bug_id' => $id});
return if ($field eq "dependson" || $field eq "blocked"); return if (defined $field && ($field eq "dependson" || $field eq "blocked"));
return if Bugzilla->user->can_see_bug($id); return if Bugzilla->user->can_see_bug($id);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment