From: Edward Date: Tue, 8 Jul 2014 05:31:47 +0000 (+0800) Subject: ConvertStyle.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=08a7216c41def353546fbe5843939d45235571d0 ConvertStyle.php --- 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){