From e4a405803a8d329a487da27248582c8362e4aeff Mon Sep 17 00:00:00 2001 From: edward Date: Wed, 5 Oct 2016 13:47:48 +0800 Subject: [PATCH] Images.php --- Images.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Images.php b/Images.php index ecde8608..a71ece7b 100644 --- a/Images.php +++ b/Images.php @@ -340,7 +340,7 @@ class Pman_Core_Images extends Pman preg_match_all('/]+>/i',$html, $result); $matches = array_unique($result[0]); - print_r($baseURL);exit; + foreach($matches as $img) { $imatch = array(); preg_match_all('/(width|height|src)="([^"]*)"/i',$img, $imatch); @@ -356,6 +356,7 @@ class Pman_Core_Images extends Pman if (empty($attr['src'])) { continue; } + print_f(strpos($attr['src'], $baseURL));exit; if (0 !== strpos($attr['src'], $baseURL)) { // it starts with our 'new' baseURL? $html = self::replaceImgUrl($html, $baseURL, $img, $attr, 'src' ); -- 2.39.2