Skip to content

Commit

Permalink
HTML improvements, including fix for bug 2967.
Browse files Browse the repository at this point in the history
  • Loading branch information
defacer committed Apr 19, 2005
1 parent 979f826 commit bb74176
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions admin/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -396,20 +396,19 @@
//////////////////////////////////////////////////////////////////////////////////////////////////


echo "<table border=\"0\" align=\"center\" width=\"100%\"><tr>";
echo "<td align=\"center\" width=\"33%\">";
print_single_button("$CFG->wwwroot/doc", NULL, get_string("documentation"));
echo "</td>";
echo '<table width="100%"><tr>';
echo '<td align="center" width="33%">';
print_single_button($CFG->wwwroot.'/doc/', NULL, get_string('documentation'));
echo '</td>';

echo "<td align=\"center\" width=\"33%\">";
print_single_button("phpinfo.php", NULL, get_string("phpinfo"));
echo "</td>";
echo '<td align="center" width="33%">';
print_single_button('phpinfo.php', NULL, get_string('phpinfo'));
echo '</td>';

echo "<td align=\"center\" width=\"33%\">";
echo '<td align="center" width="33%">';
$options['sesskey'] = $USER->sesskey;
print_single_button("register.php", $options, get_string("registration"));
echo "</td>";
echo "</table>";
print_single_button('register.php', $options, get_string('registration'));
echo '</td></tr></table>';

print_simple_box_end();

Expand Down

0 comments on commit bb74176

Please sign in to comment.