Index: trunk/extensions/ArticleFeedbackv5/api/ApiViewFeedbackArticleFeedbackv5.php |
— | — | @@ -604,7 +604,7 @@ |
605 | 605 | 'class' => 'articleFeedbackv5-comment-short', |
606 | 606 | 'id' => "articleFeedbackv5-comment-short-$feedbackId" |
607 | 607 | ), |
608 | | - htmlspecialchars( $short ) |
| 608 | + $short |
609 | 609 | ); |
610 | 610 | |
611 | 611 | // If the short string is the same size as the |
— | — | @@ -617,12 +617,12 @@ |
618 | 618 | 'class' => 'articleFeedbackv5-comment-full', |
619 | 619 | 'id' => "articleFeedbackv5-comment-full-$feedbackId" |
620 | 620 | ), |
621 | | - htmlspecialchars( $text ) |
| 621 | + $text |
622 | 622 | ) |
623 | 623 | . Html::element( 'a', array( |
624 | 624 | 'class' => 'articleFeedbackv5-comment-toggle', |
625 | 625 | 'id' => "articleFeedbackv5-comment-toggle-$feedbackId" |
626 | | - ), wfMessage( 'articlefeedbackv5-comment-more' )->escaped() ); |
| 626 | + ), wfMessage( 'articlefeedbackv5-comment-more' ) ); |
627 | 627 | } |
628 | 628 | |
629 | 629 | $rv .= Html::closeElement( 'blockquote' ); |