X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fmood.php;h=eee11e20c5b27bc3ac5e055071b713cd113339f0;hb=89c5989cfb679449fb776df7380e972d0f676d8d;hp=7a793c71e0fd91d0428d9b1e515055576b9f9847;hpb=f1bc2afbfef6dc822929f8436c29927b703c5c48;p=friendica.git diff --git a/mod/mood.php b/mod/mood.php index 7a793c71e0..eee11e20c5 100644 --- a/mod/mood.php +++ b/mod/mood.php @@ -12,8 +12,8 @@ function mood_init(&$a) { $uid = local_user(); $verb = notags(trim($_GET['verb'])); - - if(! $verb) + + if(! $verb) return; $verbs = get_mood_verbs(); @@ -30,7 +30,7 @@ function mood_init(&$a) { if($parent) { - $r = q("select uri, private, allow_cid, allow_gid, deny_cid, deny_gid + $r = q("select uri, private, allow_cid, allow_gid, deny_cid, deny_gid from item where id = %d and parent = %d and uid = %d limit 1", intval($parent), intval($parent), @@ -90,7 +90,7 @@ function mood_init(&$a) { $item_id = item_store($arr); if($item_id) { - q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1", + q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d", dbesc($a->get_baseurl() . '/display/' . $poster['nickname'] . '/' . $item_id), intval($uid), intval($item_id) @@ -139,4 +139,4 @@ function mood_content(&$a) { return $o; -} \ No newline at end of file +}