Commit 675e5279 authored by cyeh%bluemartini.com's avatar cyeh%bluemartini.com

fix for 51521: Broken HTML on user permissions page, patch by john.beranek@pace.co.uk

parent 69e14651
...@@ -285,7 +285,7 @@ sub SaveFooter { ...@@ -285,7 +285,7 @@ sub SaveFooter {
sub ShowPermissions { 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"; print "<P><UL>\n";
my $found = 0; my $found = 0;
SendSQL("SELECT description FROM groups " . SendSQL("SELECT description FROM groups " .
...@@ -313,7 +313,7 @@ sub ShowPermissions { ...@@ -313,7 +313,7 @@ sub ShowPermissions {
my ($description) = (FetchSQLData()); my ($description) = (FetchSQLData());
print "<LI>$description\n"; print "<LI>$description\n";
} }
print "</UL>\n"; print "</UL></TD></TR>\n";
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment