- Fix PHP warning on mistaken in_array() usage (#1487901)
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Fix PHP warning on mistaken in_array() usage (#1487901) |
| | | |
| | | RELEASE 0.5.2 |
| | | ------------- |
| | | - TinyMCE 3.4.2 now compatible with IE9 |
| | | - PEAR::Net_SMTP 1.5.2, fixed timeout issue (#1487843) |
| | | - Fix bug where template name without plugin prefix was used in render_page hook |
| | |
| | | // Now we're secure, capabilities need to be reread |
| | | $this->clearCapability(); |
| | | } |
| | | |
| | | // Use best (for security) supported authentication method |
| | | foreach (array('DIGEST-MD5', 'CRAM-MD5', 'CRAM_MD5', 'PLAIN', 'LOGIN') as $auth_method) { |
| | | if (in_array($auth_method, $auth_methods)) { |
| | | break; |
| | | } |
| | | } |
| | | } |
| | | |
| | | // Send ID info |