[eluser]auston[/eluser]
I believe the bug is in /system/database/DB_active_rec.php - Line 76, it is currently:
Code:
if ( is_bool($escape))
{
$this->_protect_identifiers = $escape;
}
I believe it should be:
Code:
if (! is_bool($escape))
{
$this->_protect_identifiers = $escape;
}
I got the idea from looking at the _protect_identifiers method in /system/database/DB_driver.php
Hope someone finds this helpful?