From 74ce01efc75fa9085436bfe79c3e6c42c2966783 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Fri, 23 Oct 2015 02:02:57 -0400
Subject: [PATCH] Q() -> rcube::Q()
---
installer/test.php | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/installer/test.php b/installer/test.php
index 72be968..bb76482 100644
--- a/installer/test.php
+++ b/installer/test.php
@@ -325,7 +325,7 @@
$status = mail($headers['To'], $headers['Subject'], $body, $header_str);
else
$status = mail($headers['To'], $headers['Subject'], $body, $header_str, '-f'.$headers['From']);
-
+
if (!$status)
$smtp_response[] = 'Mail delivery with mail() failed. Check your error logs for details';
}
@@ -340,7 +340,7 @@
else {
$RCI->fail('SMTP send', 'Invalid sender or recipient');
}
-
+
echo '</p>';
}
@@ -405,7 +405,7 @@
if (isset($_POST['imaptest']) && !empty($_POST['_host']) && !empty($_POST['_user'])) {
- echo '<p>Connecting to ' . Q($_POST['_host']) . '...<br />';
+ echo '<p>Connecting to ' . rcube::Q($_POST['_host']) . '...<br />';
$imap_host = trim($_POST['_host']);
$imap_port = $RCI->getprop('default_port');
--
Gitblit v1.9.1