From 83ff2b03826ef105e307ddaadd2b1dfe479afba2 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 26 Mar 2019 21:58:03 +0000 Subject: [PATCH] We don't need to escape values anymore --- src/Content/ForumManager.php | 2 +- src/Core/NotificationsManager.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Content/ForumManager.php b/src/Content/ForumManager.php index ff2e9aa6f..af2c3725c 100644 --- a/src/Content/ForumManager.php +++ b/src/Content/ForumManager.php @@ -205,7 +205,7 @@ class ForumManager AND NOT `contact`.`pending` AND NOT `contact`.`archive` AND `contact`.`success_update` > `failure_update` GROUP BY `contact`.`id` ", - intval(local_user()) + local_user() ); return DBA::toArray($stmtContacts); diff --git a/src/Core/NotificationsManager.php b/src/Core/NotificationsManager.php index bd877670c..5b2e97005 100644 --- a/src/Core/NotificationsManager.php +++ b/src/Core/NotificationsManager.php @@ -580,9 +580,9 @@ class NotificationsManager extends BaseObject LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id` WHERE `intro`.`uid` = ? $sql_extra AND `intro`.`blocked` = 0 LIMIT ?, ?", - intval($_SESSION['uid']), - intval($start), - intval($limit) + $_SESSION['uid'], + $start, + $limit ); if (DBA::isResult($stmtNotifies)) { $notifs = $this->formatIntros(DBA::toArray($stmtNotifies));