aboutsummaryrefslogtreecommitdiffstats
path: root/mod/photos.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/photos.php')
-rw-r--r--mod/photos.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/mod/photos.php b/mod/photos.php
index b2eb2847f..dbe165f60 100644
--- a/mod/photos.php
+++ b/mod/photos.php
@@ -11,7 +11,7 @@ require_once('include/Contact.php');
function photos_init(&$a) {
- if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
+ if((get_config('system','block_public')) && (! local_channel()) && (! remote_channel())) {
return;
}
@@ -122,11 +122,11 @@ function photos_post(&$a) {
// get the list of photos we are about to delete
- if(remote_user() && (! local_user())) {
- $str = photos_album_get_db_idstr($page_owner_uid,$album,remote_user());
+ if(remote_channel() && (! local_channel())) {
+ $str = photos_album_get_db_idstr($page_owner_uid,$album,remote_channel());
}
- elseif(local_user()) {
- $str = photos_album_get_db_idstr(local_user(),$album);
+ elseif(local_channel()) {
+ $str = photos_album_get_db_idstr(local_channel(),$album);
}
else {
$str = null;
@@ -166,7 +166,7 @@ function photos_post(&$a) {
$r = q("SELECT `id`, `resource_id` FROM `photo` WHERE ( xchan = '%s' or `uid` = %d ) AND `resource_id` = '%s' LIMIT 1",
dbesc($ob_hash),
- intval(local_user()),
+ intval(local_channel()),
dbesc($a->argv[2])
);
@@ -354,7 +354,7 @@ function photos_post(&$a) {
require_once('include/text.php');
$profile_uid = $a->profile['profile_uid'];
- $results = linkify_tags($a, $rawtags, (local_user()) ? local_user() : $profile_uid);
+ $results = linkify_tags($a, $rawtags, (local_channel()) ? local_channel() : $profile_uid);
$success = $results['success'];
$post_tags = array();
@@ -425,7 +425,7 @@ function photos_content(&$a) {
// photos/name/image/xxxxx
- if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
+ if((get_config('system','block_public')) && (! local_channel()) && (! remote_channel())) {
notice( t('Public access denied.') . EOL);
return;
}
@@ -494,7 +494,7 @@ function photos_content(&$a) {
// tabs
- $_is_owner = (local_user() && (local_user() == $owner_uid));
+ $_is_owner = (local_channel() && (local_channel() == $owner_uid));
$o .= profile_tabs($a,$_is_owner, $a->data['channel']['channel_address']);
/**
@@ -876,11 +876,11 @@ function photos_content(&$a) {
}
}
- if((local_user()) && (local_user() == $link_item['uid'])) {
+ if((local_channel()) && (local_channel() == $link_item['uid'])) {
q("UPDATE `item` SET item_flags = (item_flags & ~%d) WHERE parent = %d and uid = %d and (item_flags & %d)>0",
intval(ITEM_UNSEEN),
intval($link_item['parent']),
- intval(local_user()),
+ intval(local_channel()),
intval(ITEM_UNSEEN)
);
}