mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 04:23:01 +00:00
Bugfix: Fix link to list of pages with a particular tag.
This commit is contained in:
parent
b577c813f3
commit
3c2c76473b
3 changed files with 3 additions and 3 deletions
|
@ -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>";
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -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>";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue