aboutsummaryrefslogtreecommitdiff
path: root/views/default/admin/components
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/admin/components')
-rw-r--r--views/default/admin/components/plugin.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/views/default/admin/components/plugin.php b/views/default/admin/components/plugin.php
index 0185ba0ff..5a3bdad8a 100644
--- a/views/default/admin/components/plugin.php
+++ b/views/default/admin/components/plugin.php
@@ -122,8 +122,6 @@ if ($categories) {
$categories_html = implode(', ', $categories_arr);
}
-// @todo We need to make a page handler to read these files in.
-// this is broken.
$screenshots_html = '';
$screenshots = $plugin->manifest->getScreenshots();
if ($screenshots) {
@@ -188,22 +186,23 @@ if (elgg_view_exists($settings_view)) {
<div class="manifest_file hidden">
- <div><?php echo elgg_echo('admin:plugins:label:location') . ": " . htmlspecialchars($plugin->getPath()) ?></div>
<?php
- if ($categories_html) {
+ if ($screenshots_html) {
?>
- <div><?php echo elgg_echo('admin:plugins:label:categories') . ": " . $categories_html; ?></div>
+ <div><ul><?php echo $screenshots_html; ?></ul></div>
<?php
}
- if ($screenshots_html) {
+ if ($categories_html) {
?>
- <div><ul><?php echo $screenshots_html; ?></ul></div>
+ <div><?php echo elgg_echo('admin:plugins:label:categories') . ": " . $categories_html; ?></div>
<?php
}
+
?>
<div><?php echo elgg_echo('admin:plugins:label:copyright') . ": " . $copyright; ?></div>
<div><?php echo elgg_echo('admin:plugins:label:licence') . ": " . $license; ?></div>
+ <div><?php echo elgg_echo('admin:plugins:label:location') . ": " . htmlspecialchars($plugin->getPath()) ?></div>
<div><?php echo elgg_echo('admin:plugins:label:dependencies'); ?>:
<?php