diff options
author | Friendika <info@friendika.com> | 2011-02-03 23:25:33 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-03 23:25:33 -0800 |
commit | 5c98032893d945644c6da6bdf99484c0c8cb7e45 (patch) | |
tree | f2e86708d3823603a70bb02dcb90634b44996fe0 /mod/photos.php | |
parent | 1eef647edbdaec9effb765c95075b4295c694f12 (diff) | |
parent | b5c3fb1545b67b2cce501e916483606300fe82a9 (diff) | |
download | volse-hubzilla-5c98032893d945644c6da6bdf99484c0c8cb7e45.tar.gz volse-hubzilla-5c98032893d945644c6da6bdf99484c0c8cb7e45.tar.bz2 volse-hubzilla-5c98032893d945644c6da6bdf99484c0c8cb7e45.zip |
Merge branch 'photos' of https://github.com/fabrixxm/friendika into fabrixxm-photos
Diffstat (limited to 'mod/photos.php')
-rw-r--r-- | mod/photos.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mod/photos.php b/mod/photos.php index f892e2ce2..52cc66eae 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -913,7 +913,15 @@ function photos_content(&$a) { $o .= '<h3>' . '<a href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($ph[0]['album']) . '">' . $ph[0]['album'] . '</a></h3>'; if($can_post && ($ph[0]['uid'] == $owner_uid)) { - $o .= '<div id="photo-edit-link-wrap" ><a id="photo-edit-link" href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $datum . '/edit' . '">' . t('Edit photo') . '</a></div>'; + $o .= '<div id="photo-edit-link-wrap" ><a id="photo-edit-link" href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $datum . '/edit' . '">' . t('Edit photo') . '</a>'; + + // lock + $o .= ( ( ($ph[0]['uid'] == local_user()) && (strlen($ph[0]['allow_cid']) || strlen($ph[0]['allow_gid']) + || strlen($ph[0]['deny_cid']) || strlen($ph[0]['deny_gid'])) ) + ? ' - <img src="images/lock_icon.gif" class="lockview" alt="' . t('Private Message') . '" onclick="lockview(event,\'photo/' . $ph[0]['id'] . '\');" />' + : ''); + + $o .= '</div>'; } |