diff options
author | alecpl <alec@alec.pl> | 2010-05-26 08:57:00 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-05-26 08:57:00 +0000 |
commit | 2563619a58b98c1d088883ff9b6a9bb269ea87bb (patch) | |
tree | 9bebfbf96447817226801b6c0ca883caf2d8bf74 /installer/test.php | |
parent | 874ff4d4be5a8744052f9bcd810f62ac1da1193b (diff) |
- small improvements
Diffstat (limited to 'installer/test.php')
-rw-r--r-- | installer/test.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/installer/test.php b/installer/test.php index f1218c34f..e75ef2770 100644 --- a/installer/test.php +++ b/installer/test.php @@ -119,7 +119,7 @@ else { ?> -<h3>Check configured database settings</h3> +<h3>Check DB config</h3> <?php $db_working = false; @@ -211,7 +211,7 @@ if ($db_working) { ?> -<h3>Test SMTP settings</h3> +<h3>Test SMTP config</h3> <p> Server: <?php echo $RCI->getprop('smtp_server', 'PHP mail()'); ?><br /> @@ -244,10 +244,10 @@ $to_field = new html_inputfield(array('name' => '_to', 'id' => 'sendmailto')); <?php -if (isset($_POST['sendmail']) && !empty($_POST['_from']) && !empty($_POST['_to'])) { - +if (isset($_POST['sendmail'])) { + echo '<p>Trying to send email...<br />'; - + if (preg_match('/^' . $RCI->email_pattern . '$/i', trim($_POST['_from'])) && preg_match('/^' . $RCI->email_pattern . '$/i', trim($_POST['_to']))) { @@ -326,7 +326,7 @@ if (isset($_POST['sendmail']) && !empty($_POST['_from']) && !empty($_POST['_to'] <p><input type="submit" name="sendmail" value="Send test mail" /></p> -<h3>Test IMAP configuration</h3> +<h3>Test IMAP config</h3> <?php |