aboutsummaryrefslogtreecommitdiff
path: root/start.php
diff options
context:
space:
mode:
Diffstat (limited to 'start.php')
-rw-r--r--start.php12
1 files changed, 1 insertions, 11 deletions
diff --git a/start.php b/start.php
index b365a65a7..07100fb8a 100644
--- a/start.php
+++ b/start.php
@@ -308,7 +308,7 @@ function tidypics_entity_menu_setup($hook, $type, $return, $params) {
}
}
- // only show these options if there are images
+ // only show slideshow link if there are images
if (elgg_instanceof($entity, 'object', 'album') && $entity->getSize() > 0) {
$url = $entity->getURL() . '?limit=50&view=rss';
$url = elgg_format_url($url);
@@ -320,16 +320,6 @@ function tidypics_entity_menu_setup($hook, $type, $return, $params) {
'priority' => 80,
);
$return[] = ElggMenuItem::factory($options);
-
- if ($entity->canEdit()) {
- $options = array(
- 'name' => 'sort',
- 'text' => elgg_echo('album:sort'),
- 'href' => "photos/sort/" . $entity->getGUID(),
- 'priority' => 90,
- );
- $return[] = ElggMenuItem::factory($options);
- }
}
return $return;