summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-admin/plugins.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-08-08 10:40:54 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-08-08 10:40:54 +0000
commite6f923dd3d1b9917ce81921b158dd174d615b931 (patch)
tree5d99b22562b8024e721511545164e319e4c35a45 /wp-inst/wp-admin/plugins.php
parent7f70918945649e3718eda65f8e6fdf3d09356561 (diff)
downloadwordpress-mu-e6f923dd3d1b9917ce81921b158dd174d615b931.tar.gz
wordpress-mu-e6f923dd3d1b9917ce81921b158dd174d615b931.tar.xz
wordpress-mu-e6f923dd3d1b9917ce81921b158dd174d615b931.zip
Lots of changes from WP Core.
Removed Smarty template picker. git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@136 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst/wp-admin/plugins.php')
-rw-r--r--wp-inst/wp-admin/plugins.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/wp-inst/wp-admin/plugins.php b/wp-inst/wp-admin/plugins.php
index 765e8a5..9c56fbb 100644
--- a/wp-inst/wp-admin/plugins.php
+++ b/wp-inst/wp-admin/plugins.php
@@ -51,17 +51,17 @@ foreach ($check_plugins as $check_plugin) {
?>
<?php if (isset($_GET['activate'])) : ?>
-<div class="updated"><p><?php _e('Plugin <strong>activated</strong>.') ?></p>
+<div id="message" class="updated fade"><p><?php _e('Plugin <strong>activated</strong>.') ?></p>
</div>
<?php endif; ?>
<?php if (isset($_GET['deactivate'])) : ?>
-<div class="updated"><p><?php _e('Plugin <strong>deactivated</strong>.') ?></p>
+<div id="message" class="updated fade"><p><?php _e('Plugin <strong>deactivated</strong>.') ?></p>
</div>
<?php endif; ?>
<div class="wrap">
<h2><?php _e('Plugin Management'); ?></h2>
-<p><?php _e('Plugins are files you usually download separately from WordPress that add functionality. To install a plugin you generally just need to put the plugin file into your <code>wp-content/plugins</code> directory. Once a plugin is installed, you may activate it or deactivate it here. If something goes wrong with a plugin and you can&#8217;t use WordPress, delete that plugin from the <code>wp-content/plugins</code> directory and it will be automatically deactivated.'); ?></p>
+<p><?php _e('Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.'); ?></p>
<?php
if ( get_settings('active_plugins') )
@@ -77,7 +77,6 @@ if (empty($plugins)) {
<tr>
<th><?php _e('Plugin'); ?></th>
<th><?php _e('Version'); ?></th>
- <th><?php _e('Author'); ?></th>
<th><?php _e('Description'); ?></th>
<th><?php _e('Action'); ?></th>
</tr>
@@ -97,11 +96,10 @@ if (empty($plugins)) {
if ($style != '') $style = 'class="' . $style . '"';
echo "
<tr $style>
- <td class=\"name\">{$plugin_data['Title']}</td>
- <td class=\"vers\">{$plugin_data['Version']}</td>
- <td class=\"auth\">{$plugin_data['Author']}</td>
- <td class=\"desc\">{$plugin_data['Description']}</td>
- <td class=\"togl\">$action</td>
+ <td class='name'>{$plugin_data['Title']}</td>
+ <td class='vers'>{$plugin_data['Version']}</td>
+ <td class='desc'>{$plugin_data['Description']} <cite>By {$plugin_data['Author']}.</cite></td>
+ <td class='togl'>$action</td>
</tr>";
}
?>
@@ -111,6 +109,8 @@ if (empty($plugins)) {
}
?>
+<p><?php _e('If something goes wrong with a plugin and you can&#8217;t use WordPress, delete or rename that file in the <code>wp-content/plugins</code> directory and it will be automatically deactivated.'); ?></p>
+
<h2><?php _e('Get More Plugins'); ?></h2>
<p><?php _e('You can find additional plugins for your site in the <a href="http://wordpress.org/extend/plugins/">WordPress plugin directory</a>. To install a plugin you generally just need to upload the plugin file into your <code>wp-content/plugins</code> directory. Once a plugin is uploaded, you may activate it here.'); ?></p>