diff options
| author | JustAMacUser <myself-cmsmxc3e@zaikos.com> | 2018-05-12 13:31:52 -0400 |
|---|---|---|
| committer | JustAMacUser <myself-cmsmxc3e@zaikos.com> | 2018-05-12 13:31:52 -0400 |
| commit | aedcbfd9c511267e26083730b0aa7e34199217eb (patch) | |
| tree | 21dc51c037f2e6c55637733c9401fa4e7c3ddcf3 | |
| parent | 8702ded6a1d5780903c5344b1240707e498bda7a (diff) | |
af_comics: Go Comics now uses HTTPS.
| -rwxr-xr-x | plugins/af_comics/init.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/af_comics/init.php b/plugins/af_comics/init.php index bacc36918..626d0b15d 100755 --- a/plugins/af_comics/init.php +++ b/plugins/af_comics/init.php @@ -91,7 +91,7 @@ class Af_Comics extends Plugin { return $feed_data; 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]; + $site_url = 'https://www.gocomics.com/' . $comic[1]; $article_link = $site_url . date('/Y/m/d'); |