From 571c127ce470e1a273fa3fade6728b52b9b1c78c Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 14 Sep 2016 11:47:39 +0200 Subject: [PATCH] Remove not existing function sqlite_select_db() #5609 --- htdocs/core/db/sqlite3.class.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/htdocs/core/db/sqlite3.class.php b/htdocs/core/db/sqlite3.class.php index 97ba05a32ba..2c52092b9c9 100644 --- a/htdocs/core/db/sqlite3.class.php +++ b/htdocs/core/db/sqlite3.class.php @@ -305,8 +305,9 @@ class DoliDBSqlite3 extends DoliDB function select_db($database) { dol_syslog(get_class($this)."::select_db database=".$database, LOG_DEBUG); - // FIXME: sqlite_select_db() does not exist - return sqlite_select_db($this->db,$database); + // sqlite_select_db() does not exist + //return sqlite_select_db($this->db,$database); + return true; }