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:
parent
49c8cb9ecd
commit
fcd8888eae
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue