]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #6206 from annando/parent
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 26 Nov 2018 10:43:16 +0000 (11:43 +0100)
committerGitHub <noreply@github.com>
Mon, 26 Nov 2018 10:43:16 +0000 (11:43 +0100)
Missing '

include/items.php

index c3113836138c1ff8c25784a109ca22dc2b0d355d..b4793b888f3fb6a531852560a54650a749524c15 100644 (file)
@@ -352,7 +352,7 @@ function drop_item($id, $return = '')
 
        // locate item to be deleted
 
-       $fields = ['id', 'uid', 'guid', 'contact-id', 'deleted', 'gravity', parent];
+       $fields = ['id', 'uid', 'guid', 'contact-id', 'deleted', 'gravity', 'parent'];
        $item = Item::selectFirstForUser(local_user(), $fields, ['id' => $id]);
 
        if (!DBA::isResult($item)) {