Weird titles in search results
Whenever a wiki article appears in the search results, the title is all lowercase. If the wiki article was in an Island, the title is completely missing.
Fixed for the next build. In
vault/special_class_wiki.php, find:
PHP Code:
if (empty($urlinfo['namespaceid']) OR empty($urlinfo['title']))
Before it, add:
PHP Code:
if (empty($urlinfo['title']) AND !empty($urlinfo['threadtitle']))
{
$urlinfo['title'] = $urlinfo['threadtitle'];
}