String bug fix
[squirrelmail.git] / plugins / filters / options.php
index 00b7f9d23846363d062642a954390718bb2ce7ca..21582d9a9dbe1c6ee8ec043f6f6b310727f9abf1 100644 (file)
@@ -1,10 +1,8 @@
 <?php
    /*
     *  Message and Spam Filter Plugin
-    *  By Luke Ehresman <luke@squirrelmail.org>
-    *     Tyler Akins
-    *     Brent Bice
-    *  (c) 2000 (GNU GPL - see ../../COPYING)
+    *  Copyright (c) 1999-2001 The Squirrelmail Development Team
+    *  Licensed under the GNU GPL. For full terms see the file COPYING.
     *
     *  This plugin filters your inbox into different folders based upon given
     *  criteria.  It is most useful for people who are subscibed to mailing lists
     *
     *  Also view plugins/README.plugins for more information.
     *
+    *  $Id$
+    *
     */
+    
    chdir('..');
    require_once('../src/validate.php');
    require_once('../functions/page_header.php');
@@ -90,7 +91,7 @@
                  "[<a href=\"options.php?theid=$i&action=edit\">" . _("Edit") . '</a>]'.
                  '</small></td><td><small>'.
                  "[<a href=\"options.php?theid=$i&action=delete\">" . _("Delete") . '</a>]'.
-                 '</small></td><td align=center><small>';
+                 '</small></td><td align=center><small>[';
 
             if (isset($filters[$i + 1])) {
                 echo "<a href=\"options.php?theid=$i&action=move_down\">" . _("Down") . '</a>';
                 echo "<a href=\"options.php?theid=$i&action=move_up\">" . _("Up") . '</a>';
             }
             echo ']</small></td><td> - ';
-            printf( _("If <b>%s</b> contains <b>%s</b> then move to <b>%s</b>"), $filters[$i]['where'], $filters[$i]['what'], $fdr );
+            printf( _("If <b>%s</b> contains <b>%s</b> then move to <b>%s</b>"), _($filters[$i]['where']), $filters[$i]['what'], $fdr );
             echo '</td></tr>';
 
         }