summaryrefslogtreecommitdiff
path: root/plugins/af_comics
diff options
context:
space:
mode:
authorJustAMacUser <[email protected]>2017-11-16 12:14:20 -0500
committerJustAMacUser <[email protected]>2017-11-16 12:14:20 -0500
commitd1d05f7a12e3f044e76aefae9e2847e224469baf (patch)
tree9541bbfee20a1b2e0a77e75b0e564a6752998bc7 /plugins/af_comics
parent138813314e4b406034630cc295fd50d704da3c41 (diff)
Updated af_comics GoComics handling to support comics with numbers and use the main web URL as a feed URL (legacy FeedBurner URL support still exists).
Diffstat (limited to 'plugins/af_comics')
-rw-r--r--plugins/af_comics/init.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/af_comics/init.php b/plugins/af_comics/init.php
index 6bd3c23e2..54054399e 100644
--- a/plugins/af_comics/init.php
+++ b/plugins/af_comics/init.php
@@ -65,7 +65,7 @@ class Af_Comics extends Plugin {
}
print "</ul>";
- print "<p>".__('GoComics requires a specific URL to workaround their lack of feed support: <code>http://feeds.feedburner.com/uclick/<em>comic_name</em></code> (e.g. <code>http://www.gocomics.com/garfield</code> uses <code>http://feeds.feedburner.com/uclick/garfield</code>).')."</p>";
+ print "<p>".__("To subscribe to GoComics use the comic's regular web page as the feed URL (e.g. for the <em>Garfield</em> comic use <code>http://www.gocomics.com/garfield</code>).")."</p>";
print "<p>".__('Drop any updated filters into <code>filters.local</code> in plugin directory.')."</p>";
@@ -89,7 +89,7 @@ class Af_Comics extends Plugin {
if ($auth_login || $auth_pass)
return $feed_data;
- if (preg_match('#^https?://feeds.feedburner.com/uclick/([-a-z]+)#', $fetch_url, $comic)) {
+ if (preg_match('#^https?://(?:feeds\.feedburner\.com/uclick|www\.gocomics\.com)/([-a-z0-9]+)$#i', $fetch_url, $comic)) {
$site_url = 'http://www.gocomics.com/' . $comic[1];
$article_link = $site_url . date('/Y/m/d');