diff options
author | Greg Aker <greg@gregaker.net> | 2011-08-30 02:31:48 +0200 |
---|---|---|
committer | Greg Aker <greg@gregaker.net> | 2011-08-30 02:31:48 +0200 |
commit | b50df5f018176c0cd0ad498e9c710a2b0b016a80 (patch) | |
tree | 95733dbbcc348a92aad5d979db2e5da471859c25 /system/core/Common.php | |
parent | c964e72aabc3a646dbb82f6bf609e9532e75d011 (diff) | |
parent | d7a28663344fbb760134b5623b8cb441f4875f80 (diff) |
Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop
Diffstat (limited to 'system/core/Common.php')
-rw-r--r-- | system/core/Common.php | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/system/core/Common.php b/system/core/Common.php index db9fbeb9f..d79375475 100644 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -132,9 +132,9 @@ if ( ! function_exists('load_class')) $name = FALSE; - // Look for the class first in the native system/libraries folder - // thenin the local application/libraries folder - foreach (array(BASEPATH, APPPATH) as $path) + // Look for the class first in the local application/libraries folder + // then in the native system/libraries folder + foreach (array(APPPATH, BASEPATH) as $path) { if (file_exists($path.$directory.'/'.$class.'.php')) { @@ -536,5 +536,29 @@ if ( ! function_exists('remove_invisible_characters')) } } +// ------------------------------------------------------------------------ + +/** +* Returns HTML escaped variable +* +* @access public +* @param mixed +* @return mixed +*/ +if ( ! function_exists('html_escape')) +{ + function html_escape($var) + { + if (is_array($var)) + { + return array_map('html_escape', $var); + } + else + { + return htmlspecialchars($var, ENT_QUOTES, config_item('charset')); + } + } +} + /* End of file Common.php */ /* Location: ./system/core/Common.php */
\ No newline at end of file |