2008-11-21 Evi Vanoost <vanooste@rcbi.rochester.edu>

* include/functions.php: Added function_exists check for multibyte 
	functions. Thanks to Glen Eustace for bug report. mb_string extension

git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1256 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
guruevi 2008-11-21 20:16:14 +00:00
parent 49c8cb9ecd
commit fcd8888eae
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2008-11-21 Evi Vanoost <vanooste@rcbi.rochester.edu>
* include/functions.php: Added function_exists check for multibyte
functions. Thanks to Glen Eustace for bug report. mb_string extension
2008-11-21 Evi Vanoost <vanooste@rcbi.rochester.edu>
* godmode/setup/setup.php: Added prominent_time value to configuration.

View File

@ -1252,4 +1252,13 @@ function enterprise_include ($filename) {
return ENTERPRISE_NOT_HOOK;
}
if (!function_exists ("mb_strtoupper")) {
//Multibyte not loaded
function mb_strtoupper ($string, $encoding = false) {
return strtoupper ($string);
}
function mb_strtolower ($string, $encoding = false) {
return strtoupper ($string);
}
}
?>