From 08a7216c41def353546fbe5843939d45235571d0 Mon Sep 17 00:00:00 2001 From: Edward Date: Tue, 8 Jul 2014 13:31:47 +0800 Subject: [PATCH] ConvertStyle.php --- ConvertStyle.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ConvertStyle.php b/ConvertStyle.php index 4179c512..265701da 100644 --- a/ConvertStyle.php +++ b/ConvertStyle.php @@ -68,6 +68,8 @@ class Pman_Core_ConvertStyle extends Pman function convertStyle($url, $file, $is_url = true) { + $inLineCss = true; + if($is_url && !empty($url)) { $host = parse_url($url); @@ -91,7 +93,7 @@ class Pman_Core_ConvertStyle extends Pman } if(preg_match('/^\s\s/', $data)){ - return $data; + $inLineCss = false; } libxml_use_internal_errors (true); @@ -144,6 +146,10 @@ class Pman_Core_ConvertStyle extends Pman $data = $doc->saveHTML(); + if(!$inLineCss){ + return $data; + } + $htmldoc = new HTML_CSS_InlineStyle($data); if(count($this->styleSheets) > 0){ foreach ($this->styleSheets as $styleSheet){ -- 2.39.2