From 25895fb7715631499838d9ddf026b1becc4bd42d Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Mon, 1 Apr 2019 16:19:22 +0900 Subject: [PATCH] Update database.php --- system/database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/database.php b/system/database.php index 056942d..a9939ab 100644 --- a/system/database.php +++ b/system/database.php @@ -458,8 +458,8 @@ if(!check_function_exists("get_bind_to_sqlx")) { // alias sql_query from exec_db_query if(!check_function_exists("sql_query")) { - function sql_query($sql, $bind=array()) { - return exec_db_query($sql, $bind); + function sql_query($sql, $bind=array(), $options=array()) { + return exec_db_query($sql, $bind, $options); } }