aboutsummaryrefslogtreecommitdiff
path: root/views/default/admin/plugins.php
diff options
context:
space:
mode:
authorpete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-27 15:42:00 +0000
committerpete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-27 15:42:00 +0000
commitf79931b08e77267e64498a436a362957b7c1774a (patch)
treeb144dae3754f1c4514d5036dc4918f7c7920d4e8 /views/default/admin/plugins.php
parent8be81134528bdb0c791910b0fa509e6662f093d1 (diff)
downloadelgg-f79931b08e77267e64498a436a362957b7c1774a.tar.gz
elgg-f79931b08e77267e64498a436a362957b7c1774a.tar.bz2
class names added to enable/disable buttons
git-svn-id: https://code.elgg.org/elgg/trunk@2983 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/admin/plugins.php')
-rw-r--r--views/default/admin/plugins.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/admin/plugins.php b/views/default/admin/plugins.php
index cf62be6d1..04cc1c4c5 100644
--- a/views/default/admin/plugins.php
+++ b/views/default/admin/plugins.php
@@ -17,7 +17,7 @@
$token = generate_action_token($ts);
// Description of what's going on
- $buttons = " <a href=\"{$CONFIG->url}action/admin/plugins/enableall?__elgg_token=$token&__elgg_ts=$ts\">".elgg_echo('enableall')."</a> <a href=\"{$CONFIG->url}action/admin/plugins/disableall?__elgg_token=$token&__elgg_ts=$ts\">".elgg_echo('disableall')."</a> ";
+ $buttons = " <a class='enableallplugins' href=\"{$CONFIG->url}action/admin/plugins/enableall?__elgg_token=$token&__elgg_ts=$ts\">".elgg_echo('enableall')."</a> <a class='disableallplugins' href=\"{$CONFIG->url}action/admin/plugins/disableall?__elgg_token=$token&__elgg_ts=$ts\">".elgg_echo('disableall')."</a> ";
echo "<div class=\"contentWrapper\"><span class=\"contentIntro\">" . autop(elgg_echo("admin:plugins:description")) . $buttons . "</span></div>";
$limit = get_input('limit', 10);