From cb3d85d11a416a1b7f8a0f3ee66bcb53b8a40b96 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 31 Dec 2019 16:04:54 +0900 Subject: [PATCH] Update database.php --- system/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/database.php b/system/database.php index 25acc1f..06cd259 100644 --- a/system/database.php +++ b/system/database.php @@ -604,7 +604,7 @@ if(!check_function_exists("get_bind_to_sql_select")) { foreach($_rows as $_row) { $separated_sqls[] = sprintf($sql, $s1, $_row['table_name'], $s3, $s4, $s5); } - $sql = sprintf("(%s)", implode(") union (", $separated_sqls); + $sql = sprintf("(%s)", implode(") union (", $separated_sqls)); } return $sql;