summaryrefslogtreecommitdiff
path: root/include/rssfuncs.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/rssfuncs.php')
-rw-r--r--include/rssfuncs.php13
1 files changed, 1 insertions, 12 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index 57413639a..a28cb2063 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -506,18 +506,7 @@
_debug("update_rss_feed: looking for tags [2]...");
}
- /* taaaags */
- // <a href="..." rel="tag">Xorg</a>, //
-
- $entry_tags = null;
-
- preg_match_all("/<a.*?rel=['\"]tag['\"].*?\>([^<]+)<\/a>/i",
- $entry_content, $entry_tags);
-
- $entry_tags = $entry_tags[1];
-
- $entry_tags = array_merge($entry_tags, $additional_tags);
- $entry_tags = array_unique($entry_tags);
+ $entry_tags = array_unique($additional_tags);
for ($i = 0; $i < count($entry_tags); $i++)
$entry_tags[$i] = mb_strtolower($entry_tags[$i], 'utf-8');