Code cleanup brigage...
[squirrelmail.git] / functions / tree.php
index d785fef713156c57b5513d849471c74aad9908e4..0d2a5f597e993b336f450b910942bee16c2a3975 100644 (file)
@@ -1,26 +1,40 @@
 <?php
 
-   /**
   *   tree.php
   *
   *   Copyright (c) 1999-2001 The Squirrelmail Development Team
   *   Licensed under the GNU GPL. For full terms see the file COPYING.
   *
   *   This code provides various string manipulation functions that are
   *   used by the rest of the Squirrelmail code.
   *
   *   $Id$
   */
+/**
* tree.php
+ *
* Copyright (c) 1999-2001 The SquirrelMail Development Team
* Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
* This code provides various string manipulation functions that are
* used by the rest of the Squirrelmail code.
+ *
* $Id$
+ */
 
-   require_once('../functions/imap.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.                              ***/
+/***    + 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. ***/
+/*****************************************************************/
 
-    /**
-    * findParentForChild
-    *
-    * Recursive function to find the correct parent for a new node
   *
-    * @copyright    1999-2001 The Squirrelmail Development Team
   */
+require_once('../functions/imap.php');
+
+/**
+ * findParentForChild
+ *
+ * Recursive function to find the correct parent for a new node
+ */
 
    function findParentForChild($value, $treeIndexToStart, $tree) {
       // is $value in $tree[$treeIndexToStart]['value']