]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
fix for 51521: Broken HTML on user permissions page, patch by john.beranek@pace.co.uk
authorcyeh%bluemartini.com <>
Wed, 13 Sep 2000 07:09:36 +0000 (07:09 +0000)
committercyeh%bluemartini.com <>
Wed, 13 Sep 2000 07:09:36 +0000 (07:09 +0000)
userprefs.cgi

index c39bf3d9bd8a9989250886f9c057e19baeafcd2f..c6362a143cb2256899c6ce128f90bd66468d5308 100755 (executable)
@@ -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";
     }
 }