summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2019-09-07 14:49:47 -0300
committerYaco <franco@reevo.org>2019-09-07 14:49:47 -0300
commitb57fb1640824172235681dff4a528696880b092b (patch)
tree703b77c684fce3cf4dcff9b8e9505c34ad967ee5
parentbac2754b098dce80b58fdd9e92d7e8fd172b0c12 (diff)
cambio para permitir codigo HTML en paginas traducidas
-rw-r--r--www/wiki/extensions/LanguageTag/LanguageTag.body.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/www/wiki/extensions/LanguageTag/LanguageTag.body.php b/www/wiki/extensions/LanguageTag/LanguageTag.body.php
index cac5e356..38023174 100644
--- a/www/wiki/extensions/LanguageTag/LanguageTag.body.php
+++ b/www/wiki/extensions/LanguageTag/LanguageTag.body.php
@@ -31,7 +31,9 @@ class LanguageTag
// This function is helpful in checking against the passed Language
public static function LanguageTagCheck($input, $lang) {
- $output= htmlspecialchars($input);
+ // $output= htmlspecialchars($input);
+ // Hacemos este cambio para poder meter código HTML en las paginas traducidas
+ $output = $input;
global $wgLang;