From: Brion Vibber Date: Wed, 20 Aug 2008 18:25:45 +0000 (+0000) Subject: fix for html diff on page with images -- ImageNode $attributes member was incorrectly... X-Git-Tag: 1.31.0-rc.0~45766 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=0e830bd136df37b6b2dd8d1d24f4b152f22bb47e;p=lhc%2Fweb%2Fwiklou.git fix for html diff on page with images -- ImageNode $attributes member was incorrectly declared as private --- diff --git a/includes/HTMLDiff.php b/includes/HTMLDiff.php index aadc2d0403..8318debe29 100644 --- a/includes/HTMLDiff.php +++ b/includes/HTMLDiff.php @@ -394,7 +394,7 @@ class BodyNode extends TagNode { */ class ImageNode extends TextNode { - private $attributes; + public $attributes; function __construct(TagNode $parent, /*array*/ $attrs) { if(!array_key_exists('src', $attrs)) {