From 434666c7ad8b67074d0f57fe8c45ecf8481f40c1 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Wed, 31 Jan 2001 03:55:48 +0000 Subject: [PATCH] fixed parse error git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@998 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/smtp.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/smtp.php b/functions/smtp.php index 4500ad6b..4e677109 100644 --- a/functions/smtp.php +++ b/functions/smtp.php @@ -462,7 +462,7 @@ case 554: $message = 'Transaction failed'; $status = 0; break; - default: $message = Unknown response: '. nl2br(htmlspecialchars($lines)); + default: $message = 'Unknown response: '. nl2br(htmlspecialchars($lines)); $status = 0; $error_num = '001'; break; @@ -538,4 +538,4 @@ deleteAttachments(); } -?> \ No newline at end of file +?> -- 2.25.1