From 674cf1c0973db1036e9ed8b9235d7e899670593d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 19 Apr 2007 14:40:58 +0000 Subject: [PATCH] Re-apply r20779 fix and use changed text for the (non-miser) search textbox --- includes/SpecialLog.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/SpecialLog.php b/includes/SpecialLog.php index 9c556962cc..3c9d096024 100644 --- a/includes/SpecialLog.php +++ b/includes/SpecialLog.php @@ -347,12 +347,12 @@ class LogViewer { if ( $s->log_type == 'move' && isset( $paramArray[0] ) ) { $destTitle = Title::newFromText( $paramArray[0] ); if ( $destTitle ) { - $reviewlink = $this->skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Movepage' ), + $revert = '(' . $this->skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Movepage' ), wfMsg( 'revertmove' ), 'wpOldTitle=' . urlencode( $destTitle->getPrefixedDBkey() ) . '&wpNewTitle=' . urlencode( $title->getPrefixedDBkey() ) . '&wpReason=' . urlencode( wfMsgForContent( 'revertmove' ) ) . - '&wpMovetalk=0' ); + '&wpMovetalk=0' ) . ')'; } // show undelete link } elseif ( $s->log_action == 'delete' && $wgUser->isAllowed( 'delete' ) ) { @@ -469,7 +469,7 @@ class LogViewer { */ function getTitlePattern() { $pattern = $this->reader->queryPattern(); - return Xml::checkLabel( wfMsg( 'title-pattern' ), 'pattern', 'pattern', $pattern ); + return Xml::checkLabel( wfMsg( 'log-title-wildcard' ), 'pattern', 'pattern', $pattern ); } /** -- 2.20.1