Make the WordPress Magic translate Plugins properly. Fixes #12681

git-svn-id: https://develop.svn.wordpress.org/trunk@13868 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2010-03-28 06:43:16 +00:00
parent ff0e3800bc
commit 38e670f45b
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ foreach ( array( 'all_plugins', 'mustuse_plugins', 'dropins_plugins' ) as $plugi
foreach ( (array) $$plugin_array_name as $plugin_file => $plugin_data ) {
// Translate, Apply Markup, Sanitize HTML
$plugin_data = _get_plugin_data_markup_translate($plugin_file, $plugin_data, false, true);
$$plugin_array_name[ $plugin_file ] = $plugin_data;
${$plugin_array_name}[ $plugin_file ] = $plugin_data;
}
}
unset( $plugin_array_name );