From 0e830bd136df37b6b2dd8d1d24f4b152f22bb47e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 20 Aug 2008 18:25:45 +0000 Subject: [PATCH] fix for html diff on page with images -- ImageNode $attributes member was incorrectly declared as private --- includes/HTMLDiff.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) { -- 2.20.1