summaryrefslogtreecommitdiff
path: root/classes/labels.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-11-03 15:08:43 +0300
committerAndrew Dolgov <[email protected]>2018-11-03 15:08:43 +0300
commit3a0292303e453f38204279b5d1c978a4b9c367e9 (patch)
tree2636ec8e8fcb32cd678084d2907bab273bfd3c60 /classes/labels.php
parent3b9f982ec6398312ba52cc807c53ce8b78fbc649 (diff)
php: remove trailing whitespaces
Diffstat (limited to 'classes/labels.php')
-rw-r--r--classes/labels.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/labels.php b/classes/labels.php
index 4061de57e..fd9e454bb 100644
--- a/classes/labels.php
+++ b/classes/labels.php
@@ -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]);