diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-09-30 07:10:03 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-09-30 07:10:03 +0000 |
| commit | d375d98f2ec01691067f305438ca15a5ed18ac69 (patch) | |
| tree | 1033303452d397ad03bdcdff12fe3cd3676fe51e /roundcubemail/program/include | |
| parent | af9701630d5a04924e5f28d34f5346f20e7875e2 (diff) | |
- Added line number for error message
git-svn-id: https://svn.roundcube.net/trunk@4020 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/rcmail.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcmail.php b/roundcubemail/program/include/rcmail.php index 89a2ef6af..1b11ca3c5 100644 --- a/roundcubemail/program/include/rcmail.php +++ b/roundcubemail/program/include/rcmail.php @@ -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); } } |
