Small performance optimization to previous commit

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7818 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
mariano.iglesias 2008-11-01 14:16:06 +00:00
parent dc35135dd9
commit 0ec977a02b

View file

@ -23,8 +23,11 @@
* @lastmodified $Date$
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
if (function_exists('mb_internal_encoding') && Configure::read('App.encoding') != null) {
mb_internal_encoding(Configure::read('App.encoding'));
if (function_exists('mb_internal_encoding')) {
$encoding = Configure::read('App.encoding');
if (!empty($encoding)) {
mb_internal_encoding($encoding);
}
}
/**
* Find position of first occurrence of a case-insensitive string.