From: antipode Date: Thu, 27 Dec 2001 20:49:57 +0000 (+0000) Subject: Fixed the deprecated call-time-by-reference syntax. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7a0d72ee11f06b834a39576063225d287c44bbae;p=squirrelmail.git Fixed the deprecated call-time-by-reference syntax. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1981 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/plugins/bug_report/bug_report.php b/plugins/bug_report/bug_report.php index 45adc590..bf398944 100644 --- a/plugins/bug_report/bug_report.php +++ b/plugins/bug_report/bug_report.php @@ -82,7 +82,7 @@ if ($ldap_server[0] && ! extension_loaded('ldap')) { $body .= "\nMy IMAP server information:\n" . " Server type: $imap_server_type\n"; -$imap_stream = fsockopen ($imapServerAddress, $imapPort, &$error_number, &$error_string); +$imap_stream = fsockopen ($imapServerAddress, $imapPort, $error_number, $error_string); $server_info = fgets ($imap_stream, 1024); if ($imap_stream) { // SUPRESS HOST NAME @@ -191,4 +191,4 @@ $body = htmlspecialchars($body_top . $body); - \ No newline at end of file +