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 | |
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
-rw-r--r-- | mod/lockview.php | 17 | ||||
-rw-r--r-- | mod/photos.php | 10 |
2 files changed, 23 insertions, 4 deletions
diff --git a/mod/lockview.php b/mod/lockview.php index a886effeb..9e64e2608 100644 --- a/mod/lockview.php +++ b/mod/lockview.php @@ -2,12 +2,23 @@ function lockview_content(&$a) { - - $item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0); + + $type = (($a->argc > 1) ? $a->argv[1] : 0); + if (is_numeric($type)) { + $item_id = intval($type); + $type='item'; + } else { + $item_id = (($a->argc > 2) ? intval($a->argv[2]) : 0); + } + if(! $item_id) killme(); - $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", + if (!in_array($type, array('item','photo','event'))) + killme(); + + $r = q("SELECT * FROM `%s` WHERE `id` = %d LIMIT 1", + dbesc($type), intval($item_id) ); if(! count($r)) 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>'; } |