From e915ed50cd44e9a373d7c8660fd9907aa0a24fbb Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Fri, 22 Jan 2016 11:53:42 +0100 Subject: [PATCH] Fix configuration name typo. --- imp/lib/Compose/Attachment/Storage/AutoDetermine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imp/lib/Compose/Attachment/Storage/AutoDetermine.php b/imp/lib/Compose/Attachment/Storage/AutoDetermine.php index bc77bfce191..f2c2b620bfc 100644 --- a/imp/lib/Compose/Attachment/Storage/AutoDetermine.php +++ b/imp/lib/Compose/Attachment/Storage/AutoDetermine.php @@ -75,7 +75,7 @@ public function write($filename, Horde_Mime_Part $part) { global $conf, $injector; - if (filesize($filename) < intval($conf['compose']['link_attach_threshol'])) { + if (filesize($filename) < intval($conf['compose']['link_attach_threshold'])) { $factory = $injector->getInstance('IMP_Factory_ComposeAtc'); $this->_storage = new $factory->classAtc($this->_user, $this->_id); }