Replacing tabs with spaces, trimming white space at EOL and newline at EOF (PHP only)
authorjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 7 Jan 2005 18:17:53 +0000 (18:17 +0000)
committerjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 7 Jan 2005 18:17:53 +0000 (18:17 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8610 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/configtest.php

index 612b9dfa1b85d1df8356349fa7d1634714444d29..99201f6dbc9ddd0c9692af122ac74913b9707ee1 100644 (file)
@@ -101,11 +101,11 @@ echo $IND . "PHP extensions OK.<br />\n";
  * mbstring.func_overload allows to replace original string and regexp functions
  * with their equivalents from php mbstring extension. It causes problems when
  * scripts analyse 8bit strings byte after byte or use 8bit strings in regexp tests.
  * mbstring.func_overload allows to replace original string and regexp functions
  * with their equivalents from php mbstring extension. It causes problems when
  * scripts analyse 8bit strings byte after byte or use 8bit strings in regexp tests.
- * Setting can be controlled in php.ini (php 4.2.0), webserver config (php 4.2.0) 
+ * Setting can be controlled in php.ini (php 4.2.0), webserver config (php 4.2.0)
  * and .htaccess files (php 4.3.5).
  */
 if (function_exists('mb_internal_encoding') &&
  * and .htaccess files (php 4.3.5).
  */
 if (function_exists('mb_internal_encoding') &&
-    check_php_version(4,2,0) && 
+    check_php_version(4,2,0) &&
     (int)ini_get('mbstring.func_overload')!=0) {
     $mb_error='You have enabled mbstring overloading.'
         .' It can cause problems with SquirrelMail scripts that rely on single byte string functions.';
     (int)ini_get('mbstring.func_overload')!=0) {
     $mb_error='You have enabled mbstring overloading.'
         .' It can cause problems with SquirrelMail scripts that rely on single byte string functions.';