diff options
author | friendica <info@friendica.com> | 2013-04-25 20:01:24 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-04-25 20:01:24 -0700 |
commit | 72e83f69bc3afe3646b423a19f11c99d03e3b66a (patch) | |
tree | 130a7a1d0a45f3116c5729e6d7913ffcabff0acf /include/network.php | |
parent | d3b5e678908864d889b916ad2f976c1af16ca360 (diff) | |
download | volse-hubzilla-72e83f69bc3afe3646b423a19f11c99d03e3b66a.tar.gz volse-hubzilla-72e83f69bc3afe3646b423a19f11c99d03e3b66a.tar.bz2 volse-hubzilla-72e83f69bc3afe3646b423a19f11c99d03e3b66a.zip |
photo driver abstraction
Diffstat (limited to 'include/network.php')
-rw-r--r-- | include/network.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/network.php b/include/network.php index a70207be2..f750fcfd8 100644 --- a/include/network.php +++ b/include/network.php @@ -1051,7 +1051,8 @@ function scale_external_images($s, $include_link = true, $scale_replace = false) $matches = null; $c = preg_match_all('/\[img.*?\](.*?)\[\/img\]/ism',$s,$matches,PREG_SET_ORDER); if($c) { - require_once('include/Photo.php'); + require_once('include/photo/photo_driver.php'); + foreach($matches as $mtch) { logger('scale_external_image: ' . $mtch[1]); @@ -1080,7 +1081,7 @@ function scale_external_images($s, $include_link = true, $scale_replace = false) $type = guess_image_type($mtch[1],true); if($i) { - $ph = new Photo($i, $type); + $ph = photo_factory($i, $type); if($ph->is_valid()) { $orig_width = $ph->getWidth(); $orig_height = $ph->getHeight(); |