From: Edward Date: Wed, 19 Feb 2014 10:01:58 +0000 (+0800) Subject: ConvertStyle.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=d5a775324e9b622d1d72f394e0284f67cd9f9f78 ConvertStyle.php --- diff --git a/ConvertStyle.php b/ConvertStyle.php index 02bd2e8a..4d8b2481 100644 --- a/ConvertStyle.php +++ b/ConvertStyle.php @@ -120,14 +120,13 @@ class Pman_Core_ConvertStyle extends Pman if($l->getAttribute('rel') == 'stylesheet'){ $href = $l->getAttribute('href'); - if (empty($url) && !preg_match("/^http(.*)$/", $href, $matches)) { - // import from file , must use absolutely url + if(!preg_match("/^http(.*)$/", $href, $matches)){ + if(!empty($url)){ + $href = $this->relPath($url, $href); + } $this->jerr('Please use the absolutely url for link href!'); } - if (!empty($url) && !preg_match("/^http(.*)$/", $href, $matches)) { - // import from URL - $href = $this->relPath($url, $href); - } + $this->styleSheets[$href] = $this->replaceImageUrl(file_get_contents($href),$href); } }