From 86559d4282d5dfaceab273ac2faf42dbcca8226b Mon Sep 17 00:00:00 2001 From: "kiko%async.com.br" <> Date: Sat, 27 Sep 2003 06:47:07 +0000 Subject: Bug 65316: Typos on edit*.cgi. Change use of PutTrailer() (and the default output, in certain cases) in the edit pages. Patch by Vlad Dascalu , r=kiko, a=justdave --- editusers.cgi | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'editusers.cgi') diff --git a/editusers.cgi b/editusers.cgi index ecd179793..823035fe5 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -207,9 +207,10 @@ sub EmitFormElements ($$$$) sub PutTrailer (@) { - my (@links) = ("Back to the index"); + my (@links) = ("Back to the index"); if($editall && Bugzilla::Auth->can_edit) { - push(@links, "Add a new user"); + push(@links, + "add a new user"); } push(@links, @_); @@ -489,10 +490,11 @@ if ($action eq 'new') { SendSQL("SELECT last_insert_id()"); my ($newuserid) = FetchSQLData(); - print "To change ${user}'s permissions, go back and edit this user"; + print "To change ${user}'s permissions, go back and " . + "edit this user."; print "

\n"; - PutTrailer($localtrailer, - "add another user."); + PutTrailer($localtrailer); exit; } -- cgit v1.2.3-24-g4f1b