r108636 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r108635‎ | r108636 | r108637 >
Date:17:11, 11 January 2012
Author:catrope
Status:ok
Tags:
Comment:
Fix some more double escaping in r108506
Modified paths:
  • /trunk/extensions/ArticleFeedbackv5/SpecialArticleFeedbackv5.php (modified) (history)

Diff [purge]

Index: trunk/extensions/ArticleFeedbackv5/SpecialArticleFeedbackv5.php
@@ -116,7 +116,7 @@
117117 'id' => 'articlefeedbackv5-special-sort-'.$sort,
118118 'class' => 'aft5-sort-link'
119119 ),
120 - $this->msg( 'articlefeedbackv5-special-sort-'.$sort )
 120+ $this->msg( 'articlefeedbackv5-special-sort-'.$sort )->text()
121121 );
122122 }
123123
@@ -145,7 +145,7 @@
146146 'href' => '#',
147147 'id' => 'articlefeedbackv5-special-add-feedback',
148148 ),
149 - $this->msg( 'articlefeedbackv5-special-add-feedback' )->escaped()
 149+ $this->msg( 'articlefeedbackv5-special-add-feedback' )->text()
150150 )
151151 .Html::closeElement( 'div' )
152152 );
@@ -164,7 +164,7 @@
165165 'href' => '#',
166166 'id' => 'aft5-show-more'
167167 ),
168 - $this->msg( 'articlefeedbackv5-special-more' )->escaped()
 168+ $this->msg( 'articlefeedbackv5-special-more' )->text()
169169 )
170170 );
171171 }

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r108506AFTv5 fixes - consistent escaping of translations, fix typo in translations f...gregchiasson15:26, 10 January 2012

Status & tagging log