From e60d5b0a84d8ef1035c1b717124ab8db38f28dfc Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 4 May 2017 14:24:30 +0300 Subject: move opml-specific get_feed_category to opml.php --- include/functions2.php | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'include') diff --git a/include/functions2.php b/include/functions2.php index 71618b88b..c89e572f2 100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -1635,26 +1635,6 @@ } - function get_feed_category($feed_cat, $parent_cat_id = false) { - if ($parent_cat_id) { - $parent_qpart = "parent_cat = '$parent_cat_id'"; - $parent_insert = "'$parent_cat_id'"; - } else { - $parent_qpart = "parent_cat IS NULL"; - $parent_insert = "NULL"; - } - - $result = db_query( - "SELECT id FROM ttrss_feed_categories - WHERE $parent_qpart AND title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]); - - if (db_num_rows($result) == 0) { - return false; - } else { - return db_fetch_result($result, 0, "id"); - } - } - function add_feed_category($feed_cat, $parent_cat_id = false) { if (!$feed_cat) return false; -- cgit v1.2.3