diff options
Diffstat (limited to 'mod/photos.php')
-rw-r--r-- | mod/photos.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/photos.php b/mod/photos.php index 6798cb002..2fe2d8a74 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -281,6 +281,7 @@ function photos_post(&$a) { ); if(count($p)) { $ext = $phototypes[$p[0]['type']]; + $r = q("UPDATE `photo` SET `description` = '%s', `album` = '%s', `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s' WHERE `resource_id` = '%s' AND `uid` = %d", dbesc($desc), dbesc($albname), @@ -504,6 +505,9 @@ function photos_content(&$a) { $o = ""; + $o .= "<script> var profile_uid = " . $a->profile['profile_uid'] + . "; var netargs = '?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n"; + // tabs $_is_owner = (local_user() && (local_user() == $owner_uid)); |