Remove double escaping in Special:Block
[lhc/web/wiklou.git] / includes / specials / SpecialBlock.php
index 14d97eb..195e64d 100644 (file)
@@ -829,7 +829,7 @@ class SpecialBlock extends FormSpecialPage {
                        }
 
                        list( $show, $value ) = explode( ':', $option );
-                       $a[htmlspecialchars( $show )] = htmlspecialchars( $value );
+                       $a[$show] = $value;
                }
 
                return $a;