1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

move some label stuff to labels.php

move getfeedcategory() to Feeds
This commit is contained in:
Andrew Dolgov
2017-05-04 15:36:36 +03:00
parent 904aff7667
commit 0086a89740
3 changed files with 22 additions and 21 deletions

View File

@@ -1,4 +1,12 @@
<?php
function label_to_feed_id($label) {
return LABEL_BASE_INDEX - 1 - abs($label);
}
function feed_to_label_id($feed) {
return LABEL_BASE_INDEX - 1 + abs($feed);
}
function label_find_id($label, $owner_uid) {
$result = db_query(
"SELECT id FROM ttrss_labels2 WHERE caption = '$label'