aboutsummaryrefslogtreecommitdiffstats
path: root/mod/message.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/message.php')
-rw-r--r--mod/message.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/message.php b/mod/message.php
index c004b3d63..ef3be2c5e 100644
--- a/mod/message.php
+++ b/mod/message.php
@@ -87,10 +87,11 @@ function message_post(&$a) {
$image_uri = substr($image,strrpos($image,'/') + 1);
$image_uri = substr($image_uri,0, strpos($image_uri,'-'));
$r = q("UPDATE `photo` SET `allow_cid` = '%s'
- WHERE `resource-id` = '%s' AND `album` = '%s' ",
+ WHERE `resource-id` = '%s' AND `album` = '%s' AND `uid` = %d ",
dbesc('<' . $recipient . '>'),
dbesc($image_uri),
- dbesc( t('Wall Photos'))
+ dbesc( t('Wall Photos')),
+ intval(local_user())
);
}
}