From 8fd8d87de42679951d0799bfd25e0b15b8521dab Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Tue, 19 Oct 2010 00:46:46 +0000 Subject: [PATCH] BUGFIX EMAIL_BOUNCEHANDLER_KEY cannot be defined (from r108513) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112757 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- _config.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_config.php b/_config.php index a1144ef4fa4..5d13ece445f 100755 --- a/_config.php +++ b/_config.php @@ -63,7 +63,9 @@ * For more information see: * {@link http://doc.silverstripe.org/doku.php?id=email_bouncehandler} */ -define('EMAIL_BOUNCEHANDLER_KEY', '1aaaf8fb60ea253dbf6efa71baaacbb3'); +if(!defined('EMAIL_BOUNCEHANDLER_KEY')) { + define('EMAIL_BOUNCEHANDLER_KEY', '1aaaf8fb60ea253dbf6efa71baaacbb3'); +} PasswordEncryptor::register('none', 'PasswordEncryptor_None'); PasswordEncryptor::register('md5', 'PasswordEncryptor_LegacyPHPHash("md5")');