mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-06 09:52:29 +02:00
feature 2995: disable DOM parsing warnings
git-svn-id: http://piwigo.org/svn/trunk@25787 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -907,9 +907,17 @@ function move_css_to_body($content)
|
||||
{
|
||||
include_once(PHPWG_ROOT_PATH.'include/emogrifier.class.php');
|
||||
|
||||
// disable DOM warnings
|
||||
$e_state = libxml_use_internal_errors(true);
|
||||
|
||||
$e = new Emogrifier($content);
|
||||
// $e->preserveStyleTag = true;
|
||||
return $e->emogrify();
|
||||
$content = $e->emogrify();
|
||||
|
||||
libxml_clear_errors();
|
||||
libxml_use_internal_errors($e_state);
|
||||
|
||||
return $content;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user