]> git.wh0rd.org - tt-rss.git/blobdiff - plugins/vf_shared/init.php
php: remove trailing whitespaces
[tt-rss.git] / plugins / vf_shared / init.php
index a3b0daeb6aedbb062132303f489a8f4a5614f1b6..941d3c8ade24816b0676180f7894360fb17fa922 100644 (file)
@@ -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']]);