Welcome Guest, Not a member yet? Register   Sign In
sqlite_utility.php class CI_DB_sqlite_utility
#1

[eluser]Unknown[/eluser]
sqlite_utility.php
----------------------------
function _list_databases()
{
if ($this->db_debug)
{
return $this->db->display_error('db_unsuported_feature');
}
return array();
}
----------------------------

must be

----------------------------
function _list_databases()
{
if ($this->db->db_debug)
{
return $this->db->display_error('db_unsuported_feature');
}
return array();
}
----------------------------

or?




Theme © iAndrew 2016 - Forum software by © MyBB