]> git.mxchange.org Git - friendica-addons.git/blobdiff - convpath/convpath.php
Facebook: Don't add "story". Convpath now converts only pictures
[friendica-addons.git] / convpath / convpath.php
index 5ad7fbcb1f4215ff865a880ee8bfadcfc7f97b15..e5dc0b36705eb0eb42354c2c5cc460fe64464b4d 100644 (file)
@@ -45,6 +45,11 @@ function convpath_convert($path) {
                $search = "https://".$a->get_hostname();
                $replace = "http://".$a->get_hostname();
        }
-       $path = str_replace($search, $replace, $path);
+       $searcharr = array("src='".$search, 'src="'.$search);
+       $replacearr = array("src='".$replace, 'src="'.$replace);
+       $path = str_replace($searcharr, $replacearr, $path);
+
+       //$path = str_replace($search, $replace, $path);
+
        return($path);
 }