From 24d7b2af82034853f6941b0405ff1aa0ff3423c3 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 7 Jan 2018 18:11:48 +0000 Subject: [PATCH] One more query --- include/enotify.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/include/enotify.php b/include/enotify.php index 4e3c7bb1d..79c5df3f5 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -131,12 +131,10 @@ function notification($params) $p = null; if ($params['otype'] === 'item' && $parent_id) { - $p = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", - intval($parent_id) - ); + $p = dba::select('item', [], ['id' => $parent_id], ['limit' => 1]); } - $item_post_type = item_post_type($p[0]); + $item_post_type = item_post_type($p); // "a post" $dest_str = sprintf(t('%1$s commented on [url=%2$s]a %3$s[/url]'), @@ -149,12 +147,12 @@ function notification($params) $dest_str = sprintf(t('%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]'), '[url='.$params['source_link'].']'.$params['source_name'].'[/url]', $itemlink, - $p[0]['author-name'], + $p['author-name'], $item_post_type); } // "your post" - if ($p[0]['owner-name'] == $p[0]['author-name'] && $p[0]['wall']) { + if ($p['owner-name'] == $p['author-name'] && $p['wall']) { $dest_str = sprintf(t('%1$s commented on [url=%2$s]your %3$s[/url]'), '[url='.$params['source_link'].']'.$params['source_name'].'[/url]', $itemlink,