diff options
| author | fisharebest <fisharebest@gmail.com> | 2010-04-22 11:10:10 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2010-04-22 11:10:10 +0000 |
| commit | 1c27fae148d899079f5fc719858b9aa18971146d (patch) | |
| tree | 4a32f03133d165b22fb1bdc2a03001d379010fcc | |
| parent | 228bd89c76704ae0845c3f49e0b04da92dbed489 (diff) | |
| download | webtrees-1c27fae148d899079f5fc719858b9aa18971146d.tar.gz webtrees-1c27fae148d899079f5fc719858b9aa18971146d.tar.bz2 webtrees-1c27fae148d899079f5fc719858b9aa18971146d.zip | |
Fix: STMP_ACTIVE not initialised correctly
| -rw-r--r-- | setup.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -993,7 +993,7 @@ try { "('MAX_VIEW_TIME', '1'),". "('MEMORY_LIMIT', '".addcslashes($_POST['maxmem'], "'")."M'),". "('MAX_EXECUTION_TIME', '".addcslashes($_POST['maxcpu'], "'")."'),". - "('SMTP_ACTIVE', '".($_POST['smtpuse']==1)."'),". + "('SMTP_ACTIVE', '".addcslashes($_POST['smtpuse'], "'")."'),". "('SMTP_HOST', '".addcslashes($_POST['smtpserv'], "'")."'),". "('SMTP_HELO', '".addcslashes($_POST['smtpsender'], "'")."'),". "('SMTP_PORT', '".addcslashes($_POST['smtpport'], "'")."'),". |
