From a4cfc3cd050a2e7a2193b5a0485afd28b5d46162 Mon Sep 17 00:00:00 2001
From: Florian Schaal <florian@schaal-24.de>
Date: Wed, 03 Jun 2015 10:43:35 -0400
Subject: [PATCH] FS#3749 - Disable smtp checkbox in mailbox setting has no effect on courier servers
---
interface/web/index.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/interface/web/index.php b/interface/web/index.php
index af91b26..9838c24 100644
--- a/interface/web/index.php
+++ b/interface/web/index.php
@@ -97,8 +97,8 @@
}
$tmp_base64 = explode(',', $base64_logo_txt, 2);
$logo_dimensions = $app->functions->getimagesizefromstring(base64_decode($tmp_base64[1]));
-$app->tpl->setVar('base64_logo_width', $logo_dimensions[0]);
-$app->tpl->setVar('base64_logo_height', $logo_dimensions[1]);
+$app->tpl->setVar('base64_logo_width', $logo_dimensions[0].'px');
+$app->tpl->setVar('base64_logo_height', $logo_dimensions[1].'px');
$app->tpl->setVar('base64_logo_txt', $base64_logo_txt);
$app->tpl_defaults();
--
Gitblit v1.9.1