4 * Variant of QueryPage which formats the result as a simple link to the page
7 * @addtogroup SpecialPage
9 class PageQueryPage
extends QueryPage
{
12 * Format the result as a simple link to the page
15 * @param object $row Result row
18 public function formatResult( $skin, $row ) {
20 $title = Title
::makeTitleSafe( $row->namespace, $row->title
);
21 return $skin->makeKnownLinkObj( $title,
22 htmlspecialchars( $wgContLang->convert( $title->getPrefixedText() ) ) );