Jeroen De Dauw has submitted this change and it was merged. Change subject: Correct 292f4b8ae0230ae ......................................................................
Correct 292f4b8ae0230ae Parenthesis was added in the wrong place. This was reported by Temptuousinsolence at https://www.mediawiki.org/wiki/Thread:Extension_talk:Semantic_Watchlist/Error_in_SpecialWatchlistConditions.php_and_SpecialSemanticWatchlist.php Change-Id: I6e7b81fa619234f40c10a797edb2d230e3aa1f8a --- M specials/SpecialSemanticWatchlist.php M specials/SpecialWatchlistConditions.php 2 files changed, 2 insertions(+), 2 deletions(-) Approvals: Ckoerner: Looks good to me, but someone else must approve Mwjames: Looks good to me, but someone else must approve Jeroen De Dauw: Looks good to me, approved jenkins-bot: Verified diff --git a/specials/SpecialSemanticWatchlist.php b/specials/SpecialSemanticWatchlist.php index 0b6d7ba..4c24c13 100644 --- a/specials/SpecialSemanticWatchlist.php +++ b/specials/SpecialSemanticWatchlist.php @@ -37,7 +37,7 @@ * @since 0.1 */ public function getDescription() { - return $this->msg( 'special-' . strtolower( $this->getName() )->text() ); + return $this->msg( 'special-' . strtolower( $this->getName() ) )->text(); } /** diff --git a/specials/SpecialWatchlistConditions.php b/specials/SpecialWatchlistConditions.php index a7ff67a..3108172 100644 --- a/specials/SpecialWatchlistConditions.php +++ b/specials/SpecialWatchlistConditions.php @@ -28,7 +28,7 @@ * @since 0.1 */ public function getDescription() { - return $this->msg( 'special-' . strtolower( $this->getName() )->text() ); + return $this->msg( 'special-' . strtolower( $this->getName() ) )->text(); } /** -- To view, visit https://gerrit.wikimedia.org/r/168228 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I6e7b81fa619234f40c10a797edb2d230e3aa1f8a Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/SemanticWatchlist Gerrit-Branch: master Gerrit-Owner: Siebrand <[email protected]> Gerrit-Reviewer: Ckoerner <[email protected]> Gerrit-Reviewer: Jeroen De Dauw <[email protected]> Gerrit-Reviewer: Mwjames <[email protected]> Gerrit-Reviewer: Yaron Koren <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
