From ca9d9c89c54c02625746d6f8b457e53305323023 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Mon, 5 May 2014 09:56:40 +0200 Subject: [PATCH] fix wrong smtp config --- core/lib/Thelia/Model/ConfigQuery.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/Thelia/Model/ConfigQuery.php b/core/lib/Thelia/Model/ConfigQuery.php index 1daac5745..31c56e229 100644 --- a/core/lib/Thelia/Model/ConfigQuery.php +++ b/core/lib/Thelia/Model/ConfigQuery.php @@ -135,12 +135,12 @@ class ConfigQuery extends BaseConfigQuery public static function getSmtpPassword() { - return self::read('smtp.authmode'); + return self::read('smtp.password'); } public static function getSmtpAuthMode() { - return self::read('smtp.host'); + return self::read('smtp.authmode'); } public static function getSmtpTimeout()