]> git.mxchange.org Git - friendica.git/blobdiff - mod/mood.php
Merge pull request #2148 from annando/issue-1871
[friendica.git] / mod / mood.php
index 7a793c71e0fd91d0428d9b1e515055576b9f9847..eee11e20c5b27bc3ac5e055071b713cd113339f0 100644 (file)
@@ -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
+}