Comment it out better

git-svn-id: https://develop.svn.wordpress.org/trunk@16045 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2010-10-28 12:02:52 +00:00
parent 6fd3027f4e
commit 75e6391410
1 changed files with 6 additions and 2 deletions

View File

@ -205,20 +205,24 @@ class WP_Admin_Bar {
$this->need_to_change_locale = ( get_locale() != $this->user->locale );
if ( ! $this->need_to_change_locale )
return;
/*
$this->previous_translations = get_translations_for_domain( 'default' );
//$this->adminbar_locale_filter = lambda( '$_', '$GLOBALS["wp_admin_bar"]->user->locale;' );
$this->adminbar_locale_filter = lambda( '$_', '$GLOBALS["wp_admin_bar"]->user->locale;' );
unload_textdomain( 'default' );
add_filter( 'locale', $this->adminbar_locale_filter );
load_default_textdomain();
$this->changed_locale = true;
*/
}
function unload_user_locale_translations() {
global $l10n;
if ( ! $this->changed_locale )
return;
//remove_filter( 'locale', $this->adminbar_locale_filter );
/*
remove_filter( 'locale', $this->adminbar_locale_filter );
$l10n['default'] = &$this->previous_translations;
*/
}
}
?>