diff options
author | timeless%mac.com <> | 2001-10-10 13:47:17 +0200 |
---|---|---|
committer | timeless%mac.com <> | 2001-10-10 13:47:17 +0200 |
commit | 1178d9a0fd29721721a3abf795d2d2218165b784 (patch) | |
tree | 63a28bb3692dbc271379a64dab7fd109f0c7aa4d /userprefs.cgi | |
parent | 812e23f4bb131d544c339f02188e55d266df43a6 (diff) | |
download | bugzilla-1178d9a0fd29721721a3abf795d2d2218165b784.tar.gz bugzilla-1178d9a0fd29721721a3abf795d2d2218165b784.tar.xz |
Bugzilla Bug 51521 Broken HTML on user permissions page
patchwork by john.beranek@pace.co.uk and kiko. r=zach, kiko, gerv
Diffstat (limited to 'userprefs.cgi')
-rwxr-xr-x | userprefs.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/userprefs.cgi b/userprefs.cgi index 4e73ec3a9..c6672fd02 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -502,7 +502,7 @@ sub SaveFooter { sub ShowPermissions { - print "You have the following permission bits set on your account:\n"; + print "<TR><TD>You have the following permission bits set on your account:\n"; print "<P><UL>\n"; my $found = 0; SendSQL("SELECT description FROM groups " . @@ -532,6 +532,7 @@ sub ShowPermissions { } print "</UL>\n"; } + print "</TR></TD>\n"; } |