Update database.php

This commit is contained in:
Namhyeon Go 2019-10-04 12:57:39 +09:00 committed by GitHub
parent b0e46845ab
commit 271d5a533c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -702,7 +702,7 @@ if(!check_function_exists("exec_db_temp_start")) {
// temporary table
if(!check_function_exists("exec_db_temp_end")) {
function exec_db_temp_end($tablename) {
function exec_db_temp_end($tablename, $options=array()) {
$_sql = sprintf("drop temporary table %s", $tablename);
return exec_db_query($_sql);
}