mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-10 16:01:33 +00:00
php: remove trailing whitespaces
This commit is contained in:
@@ -25,7 +25,7 @@ class VF_Shared extends Plugin {
|
||||
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||
*/
|
||||
function get_unread($feed_id) {
|
||||
$sth = $this->pdo->prepare("select count(int_id) AS count
|
||||
$sth = $this->pdo->prepare("select count(int_id) AS count
|
||||
from ttrss_user_entries where owner_uid = ? and unread = true and uuid != ''");
|
||||
$sth->execute([$_SESSION['uid']]);
|
||||
|
||||
@@ -40,7 +40,7 @@ class VF_Shared extends Plugin {
|
||||
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||
*/
|
||||
function get_total($feed_id) {
|
||||
$sth = $this->pdo->prepare("select count(int_id) AS count
|
||||
$sth = $this->pdo->prepare("select count(int_id) AS count
|
||||
from ttrss_user_entries where owner_uid = ? and uuid != ''");
|
||||
$sth->execute([$_SESSION['uid']]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user