Skip to content

Commit

Permalink
Fix EZP-21348: width of tables is not saved with IE8
Browse files Browse the repository at this point in the history
  • Loading branch information
dpobel committed Aug 6, 2013
1 parent d6762c0 commit 735a05e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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' )
Expand Down

0 comments on commit 735a05e

Please sign in to comment.