summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-09-19 04:56:34 +0100
committerAndrew Dolgov <[email protected]>2006-09-19 04:56:34 +0100
commit39ddbaa1c4067ebac770e7ed923dcee12dbfe3ce (patch)
tree622b8ca8f9ac299ce01e1be52bc701cc49776d85 /functions.php
parent45094d96a2883af121763003ddb698048e16287b (diff)
fix feed: prefix stripping (2)
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 6ac0eecaf..03e511d9f 100644
--- a/functions.php
+++ b/functions.php
@@ -1917,7 +1917,7 @@
function subscribe_to_feed($link, $feed_link, $cat_id = 0) {
- $feed_link = preg_replace("/^feed://", "", $feed_link);
+ $feed_link = preg_replace("/^feed:/", "", $feed_link);
if ($cat_id == "0" || !$cat_id) {
$cat_qpart = "NULL";