From 45094d96a2883af121763003ddb698048e16287b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 19 Sep 2006 04:55:22 +0100 Subject: [PATCH] fix feed: prefix stripping --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index b90cb3136..6ac0eecaf 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";