From 735a05e4355401e3a56b9965ed06d6a6cefa848b Mon Sep 17 00:00:00 2001 From: Damien Pobel Date: Tue, 30 Jul 2013 18:24:14 +0200 Subject: [PATCH] Fix EZP-21348: width of tables is not saved with IE8 --- extension/ezoe/ezxmltext/handlers/input/ezoeinputparser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/ezoe/ezxmltext/handlers/input/ezoeinputparser.php b/extension/ezoe/ezxmltext/handlers/input/ezoeinputparser.php index 8857a01fca9..476af3629f1 100644 --- a/extension/ezoe/ezxmltext/handlers/input/ezoeinputparser.php +++ b/extension/ezoe/ezxmltext/handlers/input/ezoeinputparser.php @@ -1495,7 +1495,7 @@ protected static function elementStylesToAttribute( DOMElement $element ) continue; list( $name, $value ) = explode( ':', $style ); - $name = trim( $name ); + $name = strtolower( trim( $name ) ); $value = trim( $value ); if ( $name === 'float' || $name === 'text-align' )