Alex Monk has submitted this change and it was merged. Change subject: Updating deprecated wfMsg function. ......................................................................
Updating deprecated wfMsg function. Replaced wfMsg with wfMessage function. Change-Id: I1b7c1975ccbaa6bbbb7475765bcfc7534f4869fc Signed-off-by: Bill Traynor <[email protected]> --- M AbsenteeLandlord.php 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Alex Monk: Verified; Looks good to me, approved diff --git a/AbsenteeLandlord.php b/AbsenteeLandlord.php index 67a223c..8ae0193 100644 --- a/AbsenteeLandlord.php +++ b/AbsenteeLandlord.php @@ -41,7 +41,7 @@ # Add Messages (don't need them unless we get here) - $wgReadOnly = wfMsg( 'absenteelandlord-reason' ); + $wgReadOnly = wfMessage( 'absenteelandlord-reason' )->text(); } } -- To view, visit https://gerrit.wikimedia.org/r/150439 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I1b7c1975ccbaa6bbbb7475765bcfc7534f4869fc Gerrit-PatchSet: 2 Gerrit-Project: mediawiki/extensions/AbsenteeLandlord Gerrit-Branch: master Gerrit-Owner: Wmat <[email protected]> Gerrit-Reviewer: Alex Monk <[email protected]> Gerrit-Reviewer: Skizzerz <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
