Show System Specs link has no place under the Options
[squirrelmail.git] / plugins / bug_report / setup.php
index cba0638588009b5d7cf11b5d551916da8116a71f..757cd5458a1a7d77b081f209db3db11be9726a53 100644 (file)
@@ -3,10 +3,10 @@
 /**
  * setup.php
  *
- * Copyright (c) 1999-2004 The SquirrelMail development team
+ * Copyright (c) 1999-2005 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
- * This is a standard Squirrelmail-1.2 API for plugins.
+ * This is a standard SquirrelMail 1.2 API for plugins.
  *
  * @version $Id$
  * @package plugins
@@ -37,7 +37,7 @@ function squirrelmail_plugin_init_bug_report() {
  * @access private
  */
 function bug_report_button() {
-    global $color, $bug_report_visible;
+    global $bug_report_visible;
 
     if (! $bug_report_visible) {
         return;
@@ -79,12 +79,12 @@ function bug_report_load() {
 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';
+    echo '<tr>' . html_tag('td',_("Bug Reports:"),'right','','style="white-space: nowrap;"') . "\n" .
+         '<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";
 }
 
-?>
\ No newline at end of file
+?>