summaryrefslogtreecommitdiff
path: root/classes/labels.php
diff options
context:
space:
mode:
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]);