mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 13:55:55 +00:00
php: remove trailing whitespaces
This commit is contained in:
@@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user