diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-27 15:42:00 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-27 15:42:00 +0000 |
commit | f79931b08e77267e64498a436a362957b7c1774a (patch) | |
tree | b144dae3754f1c4514d5036dc4918f7c7920d4e8 | |
parent | 8be81134528bdb0c791910b0fa509e6662f093d1 (diff) | |
download | elgg-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
-rw-r--r-- | views/default/admin/plugins.php | 2 |
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); |