adding phpdoc blocks. @access private is used to hide functions that are
[squirrelmail.git] / plugins / bug_report / setup.php
index 3aed195895e1851aec619a595c659ae8f92e4cfa..b80a97bb5784e31356e4ca3c4d35c40f368e2ace 100644 (file)
@@ -3,19 +3,24 @@
 /**
  * setup.php
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 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.
  *
  * $Id$
+ * @package plugins
+ * @subpackage bug_report
  */
 
 /* This button fills out a form with your setup information already
    gathered -- all you have to do is type. */
 
 
-/* Initialize the bug report plugin */
+/**
+ * Initialize the bug report plugin
+ * @return void
+ */
 function squirrelmail_plugin_init_bug_report() {
     global $squirrelmail_plugin_hooks;
 
@@ -61,7 +66,7 @@ function bug_report_load() {
 function bug_report_options() {
     global $bug_report_visible;
 
-    echo '<tr><td align=right nowrap>' . _("Bug Reports:") . "</td>\n" .
+    echo '<tr>' . html_tag('td',_("Bug Reports:"),'right','','nowrap') . "\n" .
          '<td><input name="bug_report_bug_report_visible" type=CHECKBOX';
     if ($bug_report_visible) {
         echo ' CHECKED';