diff options
Diffstat (limited to 'views/default/admin/plugins.php')
-rw-r--r-- | views/default/admin/plugins.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/views/default/admin/plugins.php b/views/default/admin/plugins.php index fc044f128..fb319d436 100644 --- a/views/default/admin/plugins.php +++ b/views/default/admin/plugins.php @@ -12,7 +12,7 @@ */ // Description of what's going on - echo "<p>" . autop(elgg_echo("admin:plugins:description")) . "</p>"; + echo "<div class=\"contentWrapper\"><span class=\"contentIntro\">" . autop(elgg_echo("admin:plugins:description")) . "</span></div>"; $limit = get_input('limit', 10); $offset = get_input('offset', 0); @@ -21,11 +21,11 @@ // Get the installed plugins $installed_plugins = $vars['installed_plugins']; $count = count($installed_plugins); -
- $plugin_list = get_plugin_list();
- $max = 0;
- foreach($plugin_list as $key => $foo)
- if ($key > $max) $max = $key;
+ + $plugin_list = get_plugin_list(); + $max = 0; + foreach($plugin_list as $key => $foo) + if ($key > $max) $max = $key; // Display list of plugins $n = 0; @@ -37,7 +37,7 @@ $n++; } - // Diplay nav
+ // Diplay nav /* if ($count) { @@ -46,6 +46,6 @@ 'offset' => $offset, 'count' => $count, )); - }
+ } */ ?>
\ No newline at end of file |