XHTML fixes
[squirrelmail.git] / plugins / bug_report / setup.php
index cba0638588009b5d7cf11b5d551916da8116a71f..1c66c675939e3d51abb47e62f08fbe6257383e54 100644 (file)
@@ -80,11 +80,14 @@ function bug_report_options() {
     global $bug_report_visible;
 
     echo '<tr>' . html_tag('td',_("Bug Reports:"),'right','','nowrap') . "\n" .
-         '<td><input name="bug_report_bug_report_visible" type=checkbox';
+         '<td><input name="bug_report_bug_report_visible" type="checkbox"';
     if ($bug_report_visible) {
-        echo ' checked';
+        echo ' checked="checked"';
     }
     echo ' /> ' . _("Show button in toolbar") . "</td></tr>\n";
+
+    echo '<tr><td></td>' .
+         '<td><a href="' . SM_PATH . 'plugins/bug_report/show_system_specs.php" target="_blank"><small>' . _("Show system specs") . '</small></a></td></tr>';
 }
 
-?>
\ No newline at end of file
+?>