diff options
author | timeless%mac.com <> | 2001-10-10 13:57:30 +0200 |
---|---|---|
committer | timeless%mac.com <> | 2001-10-10 13:57:30 +0200 |
commit | ae874876253cba5f29ec1ca7f0afc9c7c8071c22 (patch) | |
tree | d412671e890ab9cc98213a7cf4ef48d891c68642 /editusers.cgi | |
parent | 5d5f0e06881ac5ed2711a3bb725f41491bcefaa7 (diff) | |
download | bugzilla-ae874876253cba5f29ec1ca7f0afc9c7c8071c22.tar.gz bugzilla-ae874876253cba5f29ec1ca7f0afc9c7c8071c22.tar.xz |
Bugzilla Bug 103121 editusers.cgi needs an Add link on the query page.
patch by dkl. r=kiko
Diffstat (limited to 'editusers.cgi')
-rwxr-xr-x | editusers.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editusers.cgi b/editusers.cgi index b1c1d01d6..12b077b66 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -202,7 +202,8 @@ sub EmitFormElements ($$$$$) sub PutTrailer (@) { - my (@links) = ("Back to the <A HREF=\"./\">index</A>", @_); + my (@links) = ("Back to the <A HREF=\"index.html\">index</A>", + "<A HREF=\"editusers.cgi?action=add\">Add a new user</A>", @_); my $count = $#links; my $num = 0; |