Changeset 2449
- Timestamp:
- 09/06/08 15:28:41 (3 months ago)
- Files:
-
- 1 modified
-
trunk/htdocs/system/classes/multibyte.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/system/classes/multibyte.php
r2401 r2449 237 237 } 238 238 239 if ( self::$use_library == self::USE_MBSTRING ) { 240 if ( extension_loaded( 'mbstring' ) ) { 241 $ret = mb_strtolower( $str, $enc ); 242 } 239 if ( self::$use_library == self::USE_MBSTRING ) && extension_loaded( 'mbstring' ) { 240 $ret = mb_strtolower( $str, $enc ); 243 241 } 244 242 else {
