Fixed created search strings.
[squirrelmail.git] / functions / display_messages.php
index af92c0e943e27ba2bfac84a66a9fe18ad622e3ef..243642b180f3971f6bffe33aad029b011ea6ae5a 100644 (file)
@@ -9,7 +9,7 @@
  * This contains all messages, including information, error, and just
  * about any other message you can think of.
  *
- * $Id$
+ * @version $Id$
  * @package squirrelmail
  */
 
@@ -127,6 +127,16 @@ function logout_error( $errString, $errTitle = '' ) {
 function error_box($string, $color) {
     global $pageheader_sent;
 
+    if ( !isset( $color ) ) {
+        $color = array();
+        $color[0]  = '#DCDCDC';  /* light gray    TitleBar               */
+        $color[1]  = '#800000';  /* red                                  */
+        $color[2]  = '#CC0000';  /* light red     Warning/Error Messages */
+        $color[4]  = '#FFFFFF';  /* white         Normal Background      */
+        $color[7]  = '#0000CC';  /* blue          Links                  */
+        $color[8]  = '#000000';  /* black         Normal text            */
+    }
+
     $err = _("ERROR");
 
     $ret = concat_hook_function('error_box', $string);