Bugfix: Fix link to list of pages with a particular tag.

This commit is contained in:
Starbeamrainbowlabs 2015-12-06 13:01:26 +00:00
parent b577c813f3
commit 3c2c76473b
3 changed files with 3 additions and 3 deletions

View File

@ -2846,7 +2846,7 @@ register_module([
<ul>\n"; <ul>\n";
foreach($all_tags as $tag) foreach($all_tags as $tag)
{ {
$content .= " <li><a href='?action=list_tags&tag=" . rawurlencode($tag) . "'>$tag</a></li>\n"; $content .= " <li><a href='?action=list-tags&tag=" . rawurlencode($tag) . "'>$tag</a></li>\n";
} }
$content .= "</ul>"; $content .= "</ul>";

View File

@ -113,7 +113,7 @@
"author": "Starbeamrainbowlabs", "author": "Starbeamrainbowlabs",
"description": "Adds a page that lists all the pages in the index along with their metadata.", "description": "Adds a page that lists all the pages in the index along with their metadata.",
"id": "page-list", "id": "page-list",
"lastupdate": 1447054618, "lastupdate": 1449405227,
"optional": false "optional": false
}, },
{ {

View File

@ -39,7 +39,7 @@ register_module([
<ul>\n"; <ul>\n";
foreach($all_tags as $tag) foreach($all_tags as $tag)
{ {
$content .= " <li><a href='?action=list_tags&tag=" . rawurlencode($tag) . "'>$tag</a></li>\n"; $content .= " <li><a href='?action=list-tags&tag=" . rawurlencode($tag) . "'>$tag</a></li>\n";
} }
$content .= "</ul>"; $content .= "</ul>";