mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 09:37:42 +01:00
Unsquish text so it doesn't run into each other.
git-svn-id: http://svn.automattic.com/wordpress/trunk@9150 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
aeffa88551
commit
00f08f8079
@ -580,7 +580,7 @@ function do_plugin_install($download_url, $plugin_information = null) {
|
|||||||
'plugins_page' => '<a href="' . admin_url('plugins.php') . '" title="' . attribute_escape(__('Goto plugins page')) . '" target="_parent">' . __('Return to Plugins page') . '</a>'
|
'plugins_page' => '<a href="' . admin_url('plugins.php') . '" title="' . attribute_escape(__('Goto plugins page')) . '" target="_parent">' . __('Return to Plugins page') . '</a>'
|
||||||
), $plugin_information, $plugin_file);
|
), $plugin_information, $plugin_file);
|
||||||
if ( ! empty($install_actions) )
|
if ( ! empty($install_actions) )
|
||||||
show_message('<strong>' . __('Actions:') . '</strong>' . implode(' | ', (array)$install_actions));
|
show_message('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$install_actions));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -636,7 +636,7 @@ function do_plugin_install_local_package($package, $filename = '') {
|
|||||||
'plugins_page' => '<a href="' . admin_url('plugins.php') . '" title="' . __('Goto plugins page') . '" target="_parent">' . __('Return to Plugins page') . '</a>'
|
'plugins_page' => '<a href="' . admin_url('plugins.php') . '" title="' . __('Goto plugins page') . '" target="_parent">' . __('Return to Plugins page') . '</a>'
|
||||||
), $plugin_information, $plugin_file);
|
), $plugin_information, $plugin_file);
|
||||||
if ( ! empty($install_actions) )
|
if ( ! empty($install_actions) )
|
||||||
show_message('<strong>' . __('Actions:') . '</strong>' . implode(' | ', (array)$install_actions));
|
show_message('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$install_actions));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ function do_plugin_upgrade($plugin) {
|
|||||||
|
|
||||||
$update_actions = apply_filters('update_plugin_complete_actions', $update_actions, $plugin_file);
|
$update_actions = apply_filters('update_plugin_complete_actions', $update_actions, $plugin_file);
|
||||||
if ( ! empty($update_actions) )
|
if ( ! empty($update_actions) )
|
||||||
show_message('<strong>' . __('Actions:') . '</strong>' . implode(' | ', (array)$update_actions));
|
show_message('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$update_actions));
|
||||||
}
|
}
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user