From 91b909acb2708e256f4a653dc0b11cd796d00a62 Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sat, 28 Mar 2009 14:46:35 +0000 Subject: not displaying edit menus for those without group membership --- index.php | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index fb3e94dd4..0ba8a6c51 100644 --- a/index.php +++ b/index.php @@ -10,13 +10,6 @@ //get the owner of the current page $owner = page_owner_entity(); - //$album - - if ($owner instanceof ElggGroup) { - - } - - error_log($owner->guid); //if page owner cannot be found, forward to user's pictures instead (or world if not logged in) if (is_null($owner->username) || empty($owner->username)) { @@ -31,9 +24,11 @@ if ($owner instanceof ElggGroup) { add_submenu_item( sprintf(elgg_echo('album:group'),$owner->name), $CONFIG->wwwroot . "pg/photos/owned/" . $owner->username); + if (can_write_to_container(0, $owner->guid)) { add_submenu_item( elgg_echo('album:create'), $CONFIG->wwwroot . 'pg/photos/new/' . $owner->username, 'tidypics'); + } } //set the title -- cgit v1.2.3