Index: trunk/phase3/includes/Preferences.php |
— | — | @@ -122,7 +122,7 @@ |
123 | 123 | 'type' => 'info', |
124 | 124 | 'label' => wfMsgExt( 'prefs-memberingroups', 'parseinline', |
125 | 125 | count($userEffectiveGroupsArray) ), |
126 | | - 'default' => htmlspecialchars( $wgLang->commaList( $userEffectiveGroupsArray ) ), |
| 126 | + 'default' => $wgLang->commaList( $userEffectiveGroupsArray ), |
127 | 127 | 'raw' => true, |
128 | 128 | 'section' => 'personal/info', |
129 | 129 | ); |
Index: trunk/phase3/languages/Language.php |
— | — | @@ -2049,7 +2049,7 @@ |
2050 | 2050 | function commaList( $list ) { |
2051 | 2051 | return implode( |
2052 | 2052 | $list, |
2053 | | - wfMsgExt( 'comma-separator', array( 'escapenoentities', 'language' => $this ) ) ); |
| 2053 | + wfMsgExt( 'comma-separator', array( 'parsemag', 'escapenoentities', 'language' => $this ) ) ); |
2054 | 2054 | } |
2055 | 2055 | |
2056 | 2056 | /** |
— | — | @@ -2061,7 +2061,7 @@ |
2062 | 2062 | function semicolonList( $list ) { |
2063 | 2063 | return implode( |
2064 | 2064 | $list, |
2065 | | - wfMsgExt( 'semicolon-separator', array( 'escapenoentities', 'language' => $this ) ) ); |
| 2065 | + wfMsgExt( 'semicolon-separator', array( 'parsemag', 'escapenoentities', 'language' => $this ) ) ); |
2066 | 2066 | } |
2067 | 2067 | |
2068 | 2068 | /** |