From 50595e7a757b5faecd8c76ceb0ebea6d3a572bf1 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Mon, 19 Mar 2018 02:12:11 +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 b04dc6a..e61cd0a 100644 --- a/system/database.php +++ b/system/database.php @@ -148,10 +148,10 @@ if(!function_exists("get_page_range")) { } } -// alias sql_query from exec_stmt_query +// alias sql_query from exec_db_query if(!function_exists("sql_query")) { function sql_query($sql, $bind=array()) { - return exec_stmt_query($sql, $bind); + return exec_db_query($sql, $bind); } }