Browse Source

SUBJECT is now the default search criteria in stead of TEXT

Thijs Kinkhorst 23 years ago
parent
commit
7c2a8b1983
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/search.php

+ 1 - 1
src/search.php

@@ -111,9 +111,9 @@ for ( $form = 0; $form <= $search_memory; $form++ ) {
                    "<TD ALIGN=\"RIGHT\">\n".
                    "<TD ALIGN=\"RIGHT\">\n".
                      "<SELECT NAME=\"where$frm\">";
                      "<SELECT NAME=\"where$frm\">";
         
         
+        s_opt( 'SUBJECT', $$where, _("Subject") );
         s_opt( 'BODY', $$where, _("Body") );
         s_opt( 'BODY', $$where, _("Body") );
         s_opt( 'TEXT', $$where, _("Everywhere") );
         s_opt( 'TEXT', $$where, _("Everywhere") );
-        s_opt( 'SUBJECT', $$where, _("Subject") );
         s_opt( 'FROM', $$where, _("From") );
         s_opt( 'FROM', $$where, _("From") );
         s_opt( 'CC', $$where, _("Cc") );
         s_opt( 'CC', $$where, _("Cc") );
         s_opt( 'TO', $$where, _("To") );
         s_opt( 'TO', $$where, _("To") );