mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 04:23:01 +00:00
Fix for #8
This commit is contained in:
parent
f9d5b4e445
commit
d1da9e669c
2 changed files with 2 additions and 2 deletions
2
core.php
2
core.php
|
@ -310,7 +310,7 @@ class page_renderer
|
||||||
{
|
{
|
||||||
$result .= "\t\t\t<option value='$pagename' />\n";
|
$result .= "\t\t\t<option value='$pagename' />\n";
|
||||||
}
|
}
|
||||||
$result = "\t\t</datalist>";
|
$result .= "\t\t</datalist>";
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -464,7 +464,7 @@ class page_renderer
|
||||||
{
|
{
|
||||||
$result .= "\t\t\t<option value='$pagename' />\n";
|
$result .= "\t\t\t<option value='$pagename' />\n";
|
||||||
}
|
}
|
||||||
$result = "\t\t</datalist>";
|
$result .= "\t\t</datalist>";
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue