Changeset 2213 in subversion
- Timestamp:
- Jan 5, 2009 5:13:08 AM (4 years ago)
- Location:
- trunk/roundcubemail/program
- Files:
-
- 4 edited
-
include/rcube_ldap.php (modified) (2 diffs)
-
lib/utf8.class.php (modified) (1 diff)
-
steps/mail/sendmail.inc (modified) (1 diff)
-
steps/mail/spell_pspell.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/rcube_ldap.php
r2157 r2213 72 72 73 73 if (!function_exists('ldap_connect')) 74 raise_error(array(' type' => 'ldap', 'message' => "No ldap support in this installation of PHP"), true);74 raise_error(array('code' => 100, 'type' => 'ldap', 'message' => "No ldap support in this installation of PHP"), true); 75 75 76 76 if (is_resource($this->conn)) … … 123 123 } 124 124 else 125 raise_error(array(' type' => 'ldap', 'message' => "Could not connect to any LDAP server, tried $host:{$this->prop[port]} last"), true);125 raise_error(array('code' => 100, 'type' => 'ldap', 'message' => "Could not connect to any LDAP server, tried $host:{$this->prop[port]} last"), true); 126 126 127 127 // See if the directory is writeable. -
trunk/roundcubemail/program/lib/utf8.class.php
r1677 r2213 109 109 //print($err_code . " : " . $err_text . "<hr>\n"); 110 110 raise_error(array('code' => 500, 111 'type' => 'php', 111 112 'file' => __FILE__, 112 113 'message' => $err_text), TRUE, FALSE); -
trunk/roundcubemail/program/steps/mail/sendmail.inc
r2193 r2213 31 31 32 32 if (!isset($_SESSION['compose']['id'])) { 33 raise_error(array('code' => 500, ' file' => __FILE__, 'message' => "Invalid compose ID"), true, false);33 raise_error(array('code' => 500, 'type' => 'smtp', 'file' => __FILE__, 'message' => "Invalid compose ID"), true, false); 34 34 console("Sendmail error", $_SESSION['compose']); 35 35 $OUTPUT->show_message("An internal error occured. Please try again.", 'error'); -
trunk/roundcubemail/program/steps/mail/spell_pspell.inc
r1980 r2213 23 23 raise_error(array( 24 24 'code' => 500, 25 'type' => 'php', 25 26 'file' => __FILE__, 26 27 'message' => "Pspell extension not available"), true, false);
Note: See TracChangeset
for help on using the changeset viewer.
