1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:15:55 +00:00

another take on feed: stripping

This commit is contained in:
Andrew Dolgov
2007-02-20 09:01:39 +01:00
parent 235a11b026
commit e2d84cdb9f

View File

@@ -1942,7 +1942,7 @@
$feed_link = trim(preg_replace("/^feed:/", "", $feed_link));
# check for feed://URL
if (strstr($feed_link, "//") == 0) {
if (strpos($feed_link, "//") === 0) {
$feed_link = "http:$feed_link";
}