Mglaser has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/329716 )

Change subject: Fix case of OutputPage::setPageTitle
......................................................................

Fix case of OutputPage::setPageTitle

Change-Id: I7efc75125a148875f0b0629fcbd3a760af421f7e
(cherry picked from commit afd896ba641af00af2514c0f9023115df3fe0e99)
---
M Review/includes/specials/SpecialReview.class.php
M Statistics/includes/specials/SpecialExtendedStatistics.class.php
2 files changed, 3 insertions(+), 3 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/BlueSpiceExtensions 
refs/changes/16/329716/1

diff --git a/Review/includes/specials/SpecialReview.class.php 
b/Review/includes/specials/SpecialReview.class.php
index 94ba870..5162adf 100644
--- a/Review/includes/specials/SpecialReview.class.php
+++ b/Review/includes/specials/SpecialReview.class.php
@@ -54,11 +54,11 @@
                if( $oUser && $oUser->getId() > 0 ) {
                        $sName = $oUser->getRealName();
                        $sName = empty( $sName ) ? $oUser->getName() : 
$oUser->getRealName().' ('.$oUser->getName().')';
-                       $oOutputPage->setPagetitle( wfMessage( 
'bs-review-specialreview-header', 1, $sName )->text() );
+                       $oOutputPage->setPageTitle( wfMessage( 
'bs-review-specialreview-header', 1, $sName )->text() );
                        $oOutputPage->addJsConfigVars( 'bsSpecialReviewUserID', 
$oUser->getId() );
                        $oOutputPage->addJsConfigVars( 
'bsSpecialReviewUserName', $oUser->getName() );
                } else {
-                       $oOutputPage->setPagetitle( wfMessage( 
'bs-review-specialreview-header', 0 )->text() );
+                       $oOutputPage->setPageTitle( wfMessage( 
'bs-review-specialreview-header', 0 )->text() );
                }
 
                $oOutputPage->addHTML( $sOut );
diff --git a/Statistics/includes/specials/SpecialExtendedStatistics.class.php 
b/Statistics/includes/specials/SpecialExtendedStatistics.class.php
index ab77055..4d13135 100644
--- a/Statistics/includes/specials/SpecialExtendedStatistics.class.php
+++ b/Statistics/includes/specials/SpecialExtendedStatistics.class.php
@@ -50,7 +50,7 @@
 
                $this->getOutput()->addHTML('<div 
id="bs-statistics-panel"></div>');
                $this->getOutput()->addModules('ext.bluespice.statistics');
-               $this->getOutput()->setPagetitle( wfMessage( 
'extendedstatistics' )->plain() );
+               $this->getOutput()->setPageTitle( wfMessage( 
'extendedstatistics' )->plain() );
                $bAllowPNGExport = false;
                global $wgSVGConverter, $wgSVGConverters;
                if( $wgSVGConverter != false && 
isset($wgSVGConverters[$wgSVGConverter]) ) {

-- 
To view, visit https://gerrit.wikimedia.org/r/329716
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7efc75125a148875f0b0629fcbd3a760af421f7e
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/BlueSpiceExtensions
Gerrit-Branch: REL1_27
Gerrit-Owner: Mglaser <gla...@hallowelt.biz>
Gerrit-Reviewer: Umherirrender <umherirrender_de...@web.de>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to