- Fix read/write database recognition (#1485811)

release-0.6
alecpl 15 years ago
parent 652a7f0ed2
commit bac3565695

@ -1,6 +1,7 @@
CHANGELOG RoundCube Webmail
===========================
- Fix read/write database recognition (#1485811)
- Fix quicksearchbox look in Chrome and Konqueror (#1484841)
- Fix UTF-8 byte-order mark removing (#1485514)
- Fix folders subscribtions on Konqueror (#1484841)

@ -228,7 +228,7 @@ class rcube_mdb2
function _query($query, $offset, $numrows, $params)
{
// Read or write ?
if (strtolower(trim(substr($query,0,6)))=='select')
if (strtolower(substr(trim($query),0,6))=='select')
$mode='r';
else
$mode='w';

Loading…
Cancel
Save