function wfSpecialWithoutinterwiki() { global $wgRequest; list($limit, $offset) = wfCheckLimits(); $prefix = $wgRequest->getVal('prefix'); $wip = new WithoutInterwikiPage(); $wip->setPrefix($prefix); $wip->doQuery($offset, $limit); }
function wfSpecialWithoutinterwiki() { global $wgRequest, $wgContLang; list($limit, $offset) = wfCheckLimits(); // Only searching the mainspace anyway $prefix = Title::capitalize($wgRequest->getVal('prefix'), NS_MAIN); $wip = new WithoutInterwikiPage(); $wip->setPrefix($prefix); $wip->doQuery($offset, $limit); }
function wfSpecialWithoutinterwiki() { global $wgRequest, $wgContLang, $wgCapitalLinks; list($limit, $offset) = wfCheckLimits(); if ($wgCapitalLinks) { $prefix = $wgContLang->ucfirst($wgRequest->getVal('prefix')); } else { $prefix = $wgRequest->getVal('prefix'); } $wip = new WithoutInterwikiPage(); $wip->setPrefix($prefix); $wip->doQuery($offset, $limit); }
function wfSpecialWithoutinterwiki() { list($limit, $offset) = wfCheckLimits(); $wip = new WithoutInterwikiPage(); $wip->doQuery($offset, $limit); }