aboutsummaryrefslogtreecommitdiffstats
path: root/include/photo
diff options
context:
space:
mode:
authorhabeascodice <habeascodice@federated.social>2014-10-11 05:44:31 -0700
committerhabeascodice <habeascodice@federated.social>2014-10-11 05:44:31 -0700
commitc854f8c238da2df08b52249142ad24ef66e422d1 (patch)
tree7194160f6f58766beb2670f89cd88f94844dd258 /include/photo
parent89faf23aacaaabf07ccf9a6c7b8f0af5b1e581bd (diff)
downloadvolse-hubzilla-c854f8c238da2df08b52249142ad24ef66e422d1.tar.gz
volse-hubzilla-c854f8c238da2df08b52249142ad24ef66e422d1.tar.bz2
volse-hubzilla-c854f8c238da2df08b52249142ad24ef66e422d1.zip
Revert "x"
This reverts commit f84453497bd5ef4eba8bca84917b8e82d784937a.
Diffstat (limited to 'include/photo')
-rw-r--r--include/photo/photo_driver.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php
index 9cd05e26e..508d82957 100644
--- a/include/photo/photo_driver.php
+++ b/include/photo/photo_driver.php
@@ -8,7 +8,6 @@ function photo_factory($data, $type = null) {
if(class_exists('Imagick') && !$ignore_imagick) {
$v = Imagick::getVersion();
preg_match('/ImageMagick ([0-9]+\.[0-9]+\.[0-9]+)/', $v['versionString'], $m);
- logger('image v='.$v.',v[ver]='.$v['versionString'].',matches='.var_export($m, true), LOGGER_DEBUG);
if(version_compare($m[1],'6.6.7') >= 0) {
require_once('include/photo/photo_imagick.php');
$ph = new photo_imagick($data,$type);