Getting ready for 1.2.0 release.
[squirrelmail.git] / src / options_highlight.php
index 2bfe3b0cfc0d4c6b2fe16b4ecd90fee331f4752b..f3f1f0802611093db49b527c9b492fd373ccfd06 100644 (file)
@@ -1,28 +1,28 @@
 <?php
 
-   /**
   **  options_highlight.php
   **
   **  Copyright (c) 1999-2001 The SquirrelMail development team
   **  Licensed under the GNU GPL. For full terms see the file COPYING.
   **
   **  Displays message highlighting options
   **
   **  $Id$
   **/
+/**
* options_highlight.php
+ *
* Copyright (c) 1999-2002 The SquirrelMail Project Team
* Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
* Displays message highlighting options
+ *
* $Id$
+ */
 
-   require_once('../src/validate.php');
-   require_once('../functions/display_messages.php');
-   require_once('../functions/imap.php');
-   require_once('../functions/array.php');
-   require_once('../functions/plugin.php');
+require_once('../src/validate.php');
+require_once('../functions/display_messages.php');
+require_once('../functions/imap.php');
+require_once('../functions/array.php');
+require_once('../functions/plugin.php');
 
-    function oh_opt( $val, $sel, $tit ) {
-        echo "            <option value=\"$val\"";
-        if ( $sel )
-            echo 'selected';
-        echo  ">$tit</option>\n";
-    }
+function oh_opt( $val, $sel, $tit ) {
+    echo "            <option value=\"$val\"";
+    if ( $sel )
+        echo 'selected';
+    echo  ">$tit</option>\n";
+}
 
    if (! isset($action))
        $action = '';
    }
    do_hook('options_highlight_bottom');
 ?>
-</body></html>
\ No newline at end of file
+</body></html>