Index: trunk/globals.php =================================================================== diff -u -r1013 -r1016 --- trunk/globals.php (.../globals.php) (revision 1013) +++ trunk/globals.php (.../globals.php) (revision 1016) @@ -1635,5 +1635,8 @@ return defined('DEBUG_MODE') && constant('DEBUG_MODE') == 1 ? 1 : 0; } +function stricmp ($string1, $string2) { + return strcmp(strtolower($string1), strtolower($string2)); +} ?>