summaryrefslogtreecommitdiffstats
path: root/userprefs.cgi
diff options
context:
space:
mode:
authorcyeh%bluemartini.com <>2000-09-13 09:09:36 +0200
committercyeh%bluemartini.com <>2000-09-13 09:09:36 +0200
commit675e52790e0d8f8f3f6d539b7b590cfa96e34915 (patch)
tree31da6939130fef16d16e08f6e2b27f66d8401d2d /userprefs.cgi
parent69e1465172259e18d956c9a760c56e32e78a9f38 (diff)
downloadbugzilla-675e52790e0d8f8f3f6d539b7b590cfa96e34915.tar.gz
bugzilla-675e52790e0d8f8f3f6d539b7b590cfa96e34915.tar.xz
fix for 51521: Broken HTML on user permissions page, patch by john.beranek@pace.co.uk
Diffstat (limited to 'userprefs.cgi')
-rwxr-xr-xuserprefs.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/userprefs.cgi b/userprefs.cgi
index c39bf3d9b..c6362a143 100755
--- a/userprefs.cgi
+++ b/userprefs.cgi
@@ -285,7 +285,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 " .
@@ -313,7 +313,7 @@ sub ShowPermissions {
my ($description) = (FetchSQLData());
print "<LI>$description\n";
}
- print "</UL>\n";
+ print "</UL></TD></TR>\n";
}
}