Changeset 2147 in subversion


Ignore:
Timestamp:
Dec 11, 2008 12:29:50 PM (4 years ago)
Author:
alec
Message:
  • added strtoupper() wrapper
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/rcube_shared.inc

    r2085 r2147  
    363363 
    364364/** 
     365 * Wrapper function for strtoupper 
     366 */ 
     367function rc_strtoupper($str) 
     368{ 
     369  if (function_exists('mb_strtoupper')) 
     370    return mb_strtoupper($str); 
     371  else 
     372    return strtoupper($str); 
     373} 
     374 
     375/** 
    365376 * Wrapper function for substr 
    366377 */ 
Note: See TracChangeset for help on using the changeset viewer.