]> git.wh0rd.org - tt-rss.git/blobdiff - classes/labels.php
php: remove trailing whitespaces
[tt-rss.git] / classes / labels.php
index 4061de57e6c46fff2d378d91dba4d961c7819c60..fd9e454bb106f478b079274e4a306781055b9a5f 100644 (file)
@@ -42,7 +42,7 @@ class Labels
 
                $pdo = Db::pdo();
 
-               $sth = $pdo->prepare("SELECT id, fg_color, bg_color, caption FROM ttrss_labels2 
+               $sth = $pdo->prepare("SELECT id, fg_color, bg_color, caption FROM ttrss_labels2
                        WHERE owner_uid = ? ORDER BY caption");
                $sth->execute([$owner_uid]);
 
@@ -190,7 +190,7 @@ class Labels
                $sth->execute([$caption, $owner_uid]);
 
                if (!$sth->fetch()) {
-                       $sth = $pdo->prepare("INSERT INTO ttrss_labels2 
+                       $sth = $pdo->prepare("INSERT INTO ttrss_labels2
                                (caption,owner_uid,fg_color,bg_color) VALUES (?, ?, ?, ?)");
 
                        $sth->execute([$caption, $owner_uid, $fg_color, $bg_color]);