https://www.mediawiki.org/wiki/Special:Code/MediaWiki/102119

Revision: 102119
Author:   ialex
Date:     2011-11-05 21:06:33 +0000 (Sat, 05 Nov 2011)
Log Message:
-----------
* Use local context to get messages
* Escape messages that were passed raw to the output

Modified Paths:
--------------
    trunk/phase3/includes/specials/SpecialAllmessages.php

Modified: trunk/phase3/includes/specials/SpecialAllmessages.php
===================================================================
--- trunk/phase3/includes/specials/SpecialAllmessages.php       2011-11-05 
21:03:17 UTC (rev 102118)
+++ trunk/phase3/includes/specials/SpecialAllmessages.php       2011-11-05 
21:06:33 UTC (rev 102119)
@@ -112,7 +112,7 @@
 
                global $wgContLang;
 
-               $this->talk = htmlspecialchars( wfMsg( 'talkpagelinktext' ) );
+               $this->talk = $this->msg( 'talkpagelinktext' )->escaped();
 
                $this->lang = ( $langObj ? $langObj : $wgContLang );
                $this->langcode = $this->lang->getCode();
@@ -152,12 +152,12 @@
                ksort( $languages );
 
                $out  = Xml::openElement( 'form', array( 'method' => 'get', 
'action' => $wgScript, 'id' => 'mw-allmessages-form' ) ) .
-                       Xml::fieldset( wfMsg( 'allmessages-filter-legend' ) ) .
+                       Xml::fieldset( $this->msg( 'allmessages-filter-legend' 
)->text() ) .
                        Html::hidden( 'title', 
$this->getTitle()->getPrefixedText() ) .
                        Xml::openElement( 'table', array( 'class' => 
'mw-allmessages-table' ) ) . "\n" .
                        '<tr>
                                <td class="mw-label">' .
-                                       Xml::label( wfMsg( 'allmessages-prefix' 
), 'mw-allmessages-form-prefix' ) .
+                                       Xml::label( $this->msg( 
'allmessages-prefix' )->text(), 'mw-allmessages-form-prefix' ) .
                                "</td>\n
                                <td class=\"mw-input\">" .
                                        Xml::input( 'prefix', 20, str_replace( 
'_', ' ', $this->displayPrefix ), array( 'id' => 'mw-allmessages-form-prefix' ) 
) .
@@ -165,22 +165,22 @@
                        </tr>
                        <tr>\n
                                <td class='mw-label'>" .
-                                       wfMsg( 'allmessages-filter' ) .
+                                       $this->msg( 'allmessages-filter' 
)->escaped() .
                                "</td>\n
                                <td class='mw-input'>" .
-                                       Xml::radioLabel( wfMsg( 
'allmessages-filter-unmodified' ),
+                                       Xml::radioLabel( $this->msg( 
'allmessages-filter-unmodified' )->text(),
                                                'filter',
                                                'unmodified',
                                                
'mw-allmessages-form-filter-unmodified',
                                                ( $this->filter == 'unmodified' 
)
                                        ) .
-                                       Xml::radioLabel( wfMsg( 
'allmessages-filter-all' ),
+                                       Xml::radioLabel( $this->msg( 
'allmessages-filter-all' )->text(),
                                                'filter',
                                                'all',
                                                
'mw-allmessages-form-filter-all',
                                                ( $this->filter == 'all' )
                                        ) .
-                                       Xml::radioLabel( wfMsg( 
'allmessages-filter-modified' ),
+                                       Xml::radioLabel( $this->msg( 
'allmessages-filter-modified' )->text(),
                                                'filter',
                                                'modified',
                                                
'mw-allmessages-form-filter-modified',
@@ -190,7 +190,7 @@
                        </tr>
                        <tr>\n
                                <td class=\"mw-label\">" .
-                                       Xml::label( wfMsg( 
'allmessages-language' ), 'mw-allmessages-form-lang' ) .
+                                       Xml::label( $this->msg( 
'allmessages-language' )->text(), 'mw-allmessages-form-lang' ) .
                                "</td>\n
                                <td class=\"mw-input\">" .
                                        Xml::openElement( 'select', array( 'id' 
=> 'mw-allmessages-form-lang', 'name' => 'lang' ) );
@@ -205,7 +205,7 @@
 
                        '<tr>
                                <td class="mw-label">' .
-                                       Xml::label( wfMsg( 
'table_pager_limit_label'), 'mw-table_pager_limit_label' ) .
+                                       Xml::label( $this->msg( 
'table_pager_limit_label' )->text(), 'mw-table_pager_limit_label' ) .
                                '</td>
                                <td class="mw-input">' .
                                        $this->getLimitSelect() .
@@ -213,7 +213,7 @@
                        <tr>
                                <td></td>
                                <td>' .
-                                       Xml::submitButton( wfMsg( 
'allmessages-filter-submit' ) ) .
+                                       Xml::submitButton( $this->msg( 
'allmessages-filter-submit' )->text() ) .
                                "</td>\n
                        </tr>" .
 
@@ -328,15 +328,15 @@
                return Xml::openElement( 'table', array( 'class' => 
'mw-datatable TablePager', 'id' => 'mw-allmessagestable' ) ) . "\n" .
                        "<thead><tr>
                                <th rowspan=\"2\">" .
-                                       wfMsg( 'allmessagesname' ) . "
+                                       $this->msg( 'allmessagesname' 
)->escaped() . "
                                </th>
                                <th>" .
-                                       wfMsg( 'allmessagesdefault' ) .
+                                       $this->msg( 'allmessagesdefault' 
)->escaped() .
                                "</th>
                        </tr>\n
                        <tr>
                                <th>" .
-                                       wfMsg( 'allmessagescurrent' ) .
+                                       $this->msg( 'allmessagescurrent' 
)->escaped() .
                                "</th>
                        </tr></thead><tbody>\n";
        }
@@ -421,8 +421,8 @@
        // This is not actually used, as getStartBody is overridden above
        function getFieldNames() {
                return array(
-                       'am_title' => wfMsg( 'allmessagesname' ),
-                       'am_default' => wfMsg( 'allmessagesdefault' )
+                       'am_title' => $this->msg( 'allmessagesname' )->text(),
+                       'am_default' => $this->msg( 'allmessagesdefault' 
)->text()
                );
        }
 


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to