aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhabeascodice <habeascodice@federated.social>2014-10-15 17:26:48 -0700
committerhabeascodice <habeascodice@federated.social>2014-10-15 17:26:48 -0700
commit084468670bcb2359a35e405d95795888b336de51 (patch)
treed6cd7012210477c6e17322b2d19b8a1aad61ca44
parentcf58122b29b7576a27b0f0561d90b87d9a0623dd (diff)
parentc854f8c238da2df08b52249142ad24ef66e422d1 (diff)
downloadvolse-hubzilla-084468670bcb2359a35e405d95795888b336de51.tar.gz
volse-hubzilla-084468670bcb2359a35e405d95795888b336de51.tar.bz2
volse-hubzilla-084468670bcb2359a35e405d95795888b336de51.zip
Merge branch 'master' of https://github.com/habeascodice/red
-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);