IMAP server error intercepted before PHP error.
[squirrelmail.git] / functions / display_messages.php
index 06e352873e33ff8e0992ea1d0f925baa3e73930c..62d31e3a82a235e9845e6a26beb1ea41e5805506 100644 (file)
@@ -1,20 +1,35 @@
 <?php
 
-   /**
   *   display_messages.php
   *
   *   Copyright (c) 1999-2001 The Squirrelmail Development Team
   *   Licensed under the GNU GPL. For full terms see the file COPYING.
   *
   *   This contains all messages, including information, error, and just
   *   about any other message you can think of.
   *
   *  $Id$
   */
+/**
* display_messages.php
+ *
* Copyright (c) 1999-2001 The SquirrelMail Development Team
* Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
* This contains all messages, including information, error, and just
* about any other message you can think of.
+ *
* $Id$
+ */
 
-    function error_username_password_incorrect($color) {
+/*****************************************************************/
+/*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!!           ***/
+/*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION.             ***/
+/***    + Base level indent should begin at left margin, as    ***/
+/***      the first line of the function definition below.     ***/
+/***    + All identation should consist of four space blocks   ***/
+/***    + Tab characters are evil.                             ***/
+/***    + all comments should use "slash-star ... star-slash"  ***/
+/***      style -- no pound characters, no slash-slash style   ***/
+/***    + FLOW CONTROL STATEMENTS (if, while, etc) SHOULD      ***/
+/***      ALWAYS USE { AND } CHARACTERS!!!                     ***/
+/***    + Please use ' instead of ", when possible. Note "     ***/
+/***      should always be used in _( ) function calls.        ***/
+/*** Thank you for your help making the SM code more readable. ***/
+/*****************************************************************/
 
-        echo '<BR>'.
+function error_username_password_incorrect($color) {
+    echo '<BR>'.
                 "<TABLE COLS=1 WIDTH=75% NOBORDER BGCOLOR=\"$color[4]\" ALIGN=CENTER>".
                 '<TR>'.
                     "<TD BGCOLOR=\"$color[0]\">".
       echo '   </TD></TR>';
       echo '</TABLE>';
     }
-?>
\ No newline at end of file
+?>