From dfca17d1cfeae12b35b642176cdda618c0727c56 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Mon, 31 Aug 2020 21:02:49 +0100 Subject: [PATCH] more of the same - this time in page / tag lists --- modules/page-list.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/modules/page-list.php b/modules/page-list.php index 1833779..b060b31 100644 --- a/modules/page-list.php +++ b/modules/page-list.php @@ -1,7 +1,7 @@ "Page list", - "version" => "0.11.3", + "version" => "0.11.4", "author" => "Starbeamrainbowlabs", "description" => "Adds a page that lists all the pages in the index along with their metadata.", "id" => "page-list", @@ -102,9 +102,8 @@ register_module([ case "html": $content = "

All tags

\n"; @@ -276,7 +275,7 @@ function generate_page_list($pagelist) { foreach($pageindex->$pagename->tags as $tag) { - $tags .= "$tag, "; + $tags .= "$tag, "; } $tags = substr($tags, 0, -2); // Remove the last ", " from the tag list }