case-insensitive wiki pages

This commit is contained in:
Shish 2016-09-24 16:17:14 +01:00
parent 5691d1c3ad
commit 9c062f3385

View file

@ -226,11 +226,11 @@ class Wiki extends Extension {
private function get_page($title, $revision=-1) {
global $database;
// first try and get the actual page
$row = $database->get_row("
$row = $database->get_row($database->scoreql_to_sql("
SELECT *
FROM wiki_pages
WHERE title LIKE :title
ORDER BY revision DESC",
WHERE SCORE_STRNORM(title) LIKE SCORE_STRNORM(:title)
ORDER BY revision DESC"),
array("title"=>$title));
// fall back to wiki:default