Unsquish text so it doesn't run into each other.

git-svn-id: https://develop.svn.wordpress.org/trunk@9150 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2008-10-14 01:33:27 +00:00
parent 34c8402f01
commit 99926fafae
2 changed files with 3 additions and 3 deletions

View File

@ -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>'
), $plugin_information, $plugin_file);
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>'
), $plugin_information, $plugin_file);
if ( ! empty($install_actions) )
show_message('<strong>' . __('Actions:') . '</strong>' . implode(' | ', (array)$install_actions));
show_message('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$install_actions));
}
}

View File

@ -66,7 +66,7 @@ function do_plugin_upgrade($plugin) {
$update_actions = apply_filters('update_plugin_complete_actions', $update_actions, $plugin_file);
if ( ! empty($update_actions) )
show_message('<strong>' . __('Actions:') . '</strong>' . implode(' | ', (array)$update_actions));
show_message('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$update_actions));
}
echo '</div>';
}