summaryrefslogtreecommitdiff
path: root/plugins/auto_assign_labels
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-21 09:35:07 +0300
committerAndrew Dolgov <[email protected]>2021-02-21 09:35:07 +0300
commit94560132ddf45a5a7c68ce520b40ecb10a6f89fe (patch)
treea973158db213849936eab2805681b7908d6034fa /plugins/auto_assign_labels
parentb4e96374bcc14b3be353f87a80f83b34615dec73 (diff)
for the most part, deal with filter rules UI
Diffstat (limited to 'plugins/auto_assign_labels')
-rwxr-xr-xplugins/auto_assign_labels/init.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/auto_assign_labels/init.php b/plugins/auto_assign_labels/init.php
index 3fa4ad8c0..341895cef 100755
--- a/plugins/auto_assign_labels/init.php
+++ b/plugins/auto_assign_labels/init.php
@@ -19,6 +19,7 @@ class Auto_Assign_Labels extends Plugin {
function get_all_labels_filter_format($owner_uid) {
$rv = array();
+ // TODO: use Labels::get_all()
$sth = $this->pdo->prepare("SELECT id, fg_color, bg_color, caption FROM ttrss_labels2 WHERE owner_uid = ?");
$sth->execute([$owner_uid]);