Replacing HTML "script" element deprecated attribute "language".
[squirrelmail.git] / functions / global.php
index 617e4ef0256003665a1eb4b5b8c0dd2a110b808f..aeee4ff815318d63a90eccfe345ac49f54fde926 100644 (file)
@@ -7,7 +7,7 @@
  * It also has some session register functions that work across various
  * php versions.
  *
- * @copyright © 1999-2005 The SquirrelMail Project Team
+ * @copyright © 1999-2006 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
@@ -371,7 +371,7 @@ if ((bool) @ini_get('register_globals')) {
     /**
      * Remove globalized $_FILES variables
      * Before 4.3.0 $_FILES are included in $_REQUEST.
-     * Unglobalize them in separate call in order to remove dependency 
+     * Unglobalize them in separate call in order to remove dependency
      * on PHP version.
      */
     foreach ($_FILES as $key => $value) {
@@ -404,7 +404,7 @@ $PHP_SELF = php_self();
 
 sqsession_is_active();
 
-/** 
+/**
  * Remove globalized session data in rg=on setups
  */
 if ((bool) @ini_get('register_globals')) {
@@ -412,4 +412,5 @@ if ((bool) @ini_get('register_globals')) {
         unset($GLOBALS[$key]);
     }
 }
+
 ?>