Browse Source

Minor cleanup in comments

Fredrik Jervfors 21 years ago
parent
commit
d297f47302
1 changed files with 7 additions and 6 deletions
  1. 7 6
      functions/global.php

+ 7 - 6
functions/global.php

@@ -24,10 +24,11 @@ if(isset($session_name) && $session_name) {
     ini_set('session.name' , 'SQMSESSID');
     ini_set('session.name' , 'SQMSESSID');
 }
 }
 
 
-/** If magic_quotes_runtime is on, SquirrelMail breaks in new and creative ways.
- *  Force magic_quotes_runtime off.
- *  tassium@squirrelmail.org - I put it here in the hopes that all SM code includes this.
- *  If there's a better place, please let me know.
+/**
+ * If magic_quotes_runtime is on, SquirrelMail breaks in new and creative ways.
+ * Force magic_quotes_runtime off.
+ * tassium@squirrelmail.org - I put it here in the hopes that all SM code includes this.
+ * If there's a better place, please let me know.
  */
  */
 ini_set('magic_quotes_runtime','0');
 ini_set('magic_quotes_runtime','0');
 
 
@@ -197,8 +198,8 @@ function sqgetGlobalVar($name, &$value, $search = SQ_INORDER) {
        as strings. */
        as strings. */
     switch ($search) {
     switch ($search) {
         /* we want the default case to be first here,
         /* we want the default case to be first here,
-	   so that if a valid value isn't specified,
-	   all three arrays will be searched. */
+           so that if a valid value isn't specified,
+           all three arrays will be searched. */
       default:
       default:
       case SQ_INORDER: // check session, post, get
       case SQ_INORDER: // check session, post, get
       case SQ_SESSION:
       case SQ_SESSION: