X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FXml.php;h=d0164331e138d95e69191882afc4dbab26b593f9;hb=0e25b050286bed143ed5a23e87d5543fe71ce5dd;hp=4e8796744c446055913ad83648cd744d523d6a6b;hpb=b3d1931c349314e05c5192a95f6f3250d8183ed0;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Xml.php b/includes/Xml.php index 4e8796744c..d0164331e1 100644 --- a/includes/Xml.php +++ b/includes/Xml.php @@ -826,28 +826,3 @@ class Xml { return $s; } } - -/** - * A wrapper class which causes Xml::encodeJsVar() and Xml::encodeJsCall() to - * interpret a given string as being a JavaScript expression, instead of string - * data. - * - * Example: - * - * Xml::encodeJsVar( new XmlJsCode( 'a + b' ) ); - * - * Returns "a + b". - * - * @note As of 1.21, XmlJsCode objects cannot be nested inside objects or arrays. The sole - * exception is the $args argument to Xml::encodeJsCall() because Xml::encodeJsVar() is - * called for each individual element in that array. - * - * @since 1.17 - */ -class XmlJsCode { - public $value; - - function __construct( $value ) { - $this->value = $value; - } -}