mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
empty() only takes variables. Props filosofo. fixes #4118
git-svn-id: https://develop.svn.wordpress.org/trunk@5224 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user