diff options
| author | wn_ <invalid@email.com> | 2025-04-04 17:40:24 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2025-04-04 17:40:24 +0000 |
| commit | 7cef3a5ac26338f437e0c0c2d014ca67bfcdd31f (patch) | |
| tree | 26b4c4cb845a96206435cc752f2987a69ce0503b | |
| parent | 7bb6ebb3566084f945a15f2f77174097dc32179f (diff) | |
Use the correct suffix for GoComics permalinks.
| -rw-r--r-- | plugins/af_comics/filters/af_comics_gocomics.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/af_comics/filters/af_comics_gocomics.php b/plugins/af_comics/filters/af_comics_gocomics.php index c72903140..3ae169c02 100644 --- a/plugins/af_comics/filters/af_comics_gocomics.php +++ b/plugins/af_comics/filters/af_comics_gocomics.php @@ -36,7 +36,7 @@ class Af_Comics_Gocomics extends Af_ComicFilter { $site_url = htmlspecialchars($site_url); // add the date suffix here to uniquely identify the "article" and provide the permalink - $article_link = htmlspecialchars($article_link) . date('/Y-m-d'); + $article_link = htmlspecialchars($article_link) . date('/Y/m/d'); $tpl = new Templator(); |