Fix invalid ORDER BY
[mediawiki.git] / includes / PageQueryPage.php
blob17ed57f13601a85703ded1faf6e6e3141ce96bbf
1 <?php
3 /**
4 * Variant of QueryPage which formats the result as a simple link to the page
6 * @package MediaWiki
7 */
8 class PageQueryPage extends QueryPage {
10 /**
11 * Format the result as a simple link to the page
13 * @param Skin $skin
14 * @param object $row Result row
15 * @return string
17 public function formatResult( $skin, $row ) {
18 global $wgContLang;
19 $title = Title::makeTitleSafe( $row->namespace, $row->title );
20 return $skin->makeKnownLinkObj( $title,
21 htmlspecialchars( $wgContLang->convert( $title->getPrefixedText() ) ) );