Images.php
[Pman.Core] / Images.php
index 6768793..52611e0 100644 (file)
@@ -171,7 +171,7 @@ class Pman_Core_Images extends Pman
     
     function post()
     {
-        
+        print_r('run???');exit;
         if (!$this->authUser) {
             $this->jerr("image conversion only allowed by registered users");
         }
@@ -360,7 +360,7 @@ class Pman_Core_Images extends Pman
                 $html = self::replaceImgUrl($html, $baseURL, $img, $attr,  'src' );
                 continue;
             }
-            if (false !== strpos($attr['src'], '//')) {
+            if (false !== strpos($attr['src'], '//') && false === strpos($attr['src'], $baseURL)) {
                 // contains an absolute path.. that is probably not us...
                 continue;
             }
@@ -368,10 +368,8 @@ class Pman_Core_Images extends Pman
             
             $html = self::replaceImgUrl($html, $baseURL, $img, $attr,  'src' );
             
-            
-            
         }
-        print_r($html);exit;
+        
         
         $result = array();
         preg_match_all('/<a\s+[^>]+>/i',$html, $result);