Getting ready for 1.2.0 release.
[squirrelmail.git] / src / folders_subscribe.php
index 2ae7412acb22b770823ae96479fc676be29ea65d..af5e2737a9f5664c50015bb664c4edb3dda82311 100644 (file)
@@ -1,20 +1,36 @@
 <?php
 
-   /**
   **  folders_subscribe.php
   **
   **  Copyright (c) 1999-2001 The SquirrelMail development team
   **  Licensed under the GNU GPL. For full terms see the file COPYING.
   **
   **  Subscribe and unsubcribe form folders. 
   **  Called from folders.php
   **
   **  $Id$
   **/
+/**
* folders_subscribe.php
+ *
* Copyright (c) 1999-2002 The SquirrelMail Project Team
* Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
* Subscribe and unsubcribe form folders. 
* Called from folders.php
+ *
* $Id$
+ */
 
-   require_once('../src/validate.php');
-   require_once('../functions/imap.php');
-   require_once('../functions/display_messages.php');
+/*****************************************************************/
+/*** 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 require_once below looks.                        ***/
+/***    + 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. ***/
+/*****************************************************************/
+
+require_once('../src/validate.php');
+require_once('../functions/imap.php');
+require_once('../functions/display_messages.php');
 
    $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);