alecpl
2008-12-11 8f79fbabdc2c09130a8ba5f2b32aba458e52cf73
program/include/rcube_shared.inc
@@ -362,6 +362,17 @@
}
/**
 * Wrapper function for strtoupper
 */
function rc_strtoupper($str)
{
  if (function_exists('mb_strtoupper'))
    return mb_strtoupper($str);
  else
    return strtoupper($str);
}
/**
 * Wrapper function for substr
 */
function rc_substr($str, $start, $len=null)