mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-12 02:56:50 +01:00
- Added line number for error message
This commit is contained in:
@@ -520,8 +520,11 @@ class rcmail
|
||||
// support this parameter for backward compatibility but log warning
|
||||
if ($connect) {
|
||||
$this->imap_connect();
|
||||
raise_error(array('code' => 800, 'type' => 'imap', 'file' => __FILE__,
|
||||
'message' => "rcube::imap_init(true) is deprecated, use rcube::imap_connect() instead"), true, false);
|
||||
raise_error(array(
|
||||
'code' => 800, 'type' => 'imap',
|
||||
'file' => __FILE__, 'line' => __LINE__,
|
||||
'message' => "rcube::imap_init(true) is deprecated, use rcube::imap_connect() instead"),
|
||||
true, false);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user