Changeset 882 in subversion
- Timestamp:
- Oct 17, 2007 4:44:10 PM (6 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
index.php (modified) (4 diffs)
-
program/include/rcube_imap.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/index.php
r871 r882 3 3 +-----------------------------------------------------------------------+ 4 4 | RoundCube Webmail IMAP Client | 5 | Version 0.1-2007 0809|5 | Version 0.1-20071017 | 6 6 | | 7 7 | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland | … … 42 42 43 43 // application constants 44 define('RCMAIL_VERSION', '0.1-2007 0809');44 define('RCMAIL_VERSION', '0.1-20071017'); 45 45 define('RCMAIL_CHARSET', 'UTF-8'); 46 46 define('JS_OBJECT_NAME', 'rcmail'); … … 173 173 else 174 174 { 175 $OUTPUT->show_message( "loginfailed", 'warning');175 $OUTPUT->show_message($IMAP->error_code == -1 ? 'imaperror' : 'loginfailed', 'warning'); 176 176 rcmail_kill_session(); 177 177 } … … 202 202 if (!$conn) 203 203 { 204 $OUTPUT->show_message( 'imaperror', 'error');204 $OUTPUT->show_message($IMAP->error_code == -1 ? 'imaperror' : 'sessionerror', 'error'); 205 205 rcmail_kill_session(); 206 206 } -
trunk/roundcubemail/program/include/rcube_imap.inc
r875 r882 66 66 var $search_charset = ''; 67 67 var $debug_level = 1; 68 var $error_code = 0; 68 69 69 70 … … 132 133 else if (!$this->conn && $GLOBALS['iil_error']) 133 134 { 135 $this->error_code = $GLOBALS['iil_errornum']; 134 136 raise_error(array('code' => 403, 135 137 'type' => 'imap',
Note: See TracChangeset
for help on using the changeset viewer.
