empty() only takes variables. Props filosofo. fixes #4118
git-svn-id: http://svn.automattic.com/wordpress/trunk@5224 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
404dd03317
commit
a24ee4902a
|
@ -49,7 +49,7 @@
|
|||
$mce_popups_css = str_replace('http://', 'https://', $mce_popups_css);
|
||||
}
|
||||
|
||||
$mce_locale = ( empty(get_locale()) ) ? 'en' : strtolower(get_locale());
|
||||
$mce_locale = ( '' == get_locale() ) ? 'en' : strtolower(get_locale());
|
||||
?>
|
||||
|
||||
initArray = {
|
||||
|
|
Loading…
Reference in New Issue