Merge "Rename $exclude_patterns to $excludePatterns and $wgDoxyGenerateMan to $doxyGe...
[lhc/web/wiklou.git] / includes / MessageBlobStore.php
index f3fc4d3..23955ae 100644 (file)
@@ -1,5 +1,7 @@
 <?php
 /**
+ * Resource message blobs storage used by the resource loader.
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
@@ -15,6 +17,7 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
+ * @file
  * @author Roan Kattouw
  * @author Trevor Parscal
  */
@@ -350,12 +353,7 @@ class MessageBlobStore {
                $messages = array();
 
                foreach ( $module->getMessages() as $key ) {
-                       $messages[$key] =
-                               Sanitizer::normalizeCharReferences(
-                                       Sanitizer::removeHTMLtags(
-                                               wfMsgExt( $key, array( 'language' => $lang ) )
-                                       )
-                               );
+                       $messages[$key] = wfMsgExt( $key, array( 'language' => $lang ) );
                }
 
                return FormatJson::encode( (object)$messages );