sql error photos_albums_list with non-logged-in viewer

This commit is contained in:
zotlabs
2017-04-02 22:20:37 -07:00
committed by Mario Vavti
parent 5fb7ea8dbd
commit a9bda2b12e
2 changed files with 6 additions and 3 deletions

View File

@@ -1826,9 +1826,12 @@ logger('revision: ' . $arr['revision']);
intval($arr['revision'])
);
if($r && count($r)) {
if($r) {
// This will gives us a fresh copy of what's now in the DB and undo the db escaping,
// which really messes up the notifications
$current_post = $r[0]['id'];
$arr = $r[0]; // This will gives us a fresh copy of what's now in the DB and undo the db escaping, which really messes up the notifications
$arr = $r[0];
logger('item_store: created item ' . $current_post, LOGGER_DEBUG);
}
else {