Update database.php

This commit is contained in:
Namhyeon Go 2018-03-15 14:09:05 +09:00 committed by GitHub
parent caf3e22898
commit b95337e188
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,7 +90,7 @@ if(!function_exists("exec_db_query")) {
$dbc->beginTransaction();
}
// execute statement (insert->execute(bind), or if not sql->bind->execute)
// execute statement (insert->execute(bind) or if not, sql->bind->execute)
$stmt_executed = $is_insert_with_bind ? @$stmt->execute($bind) : @$stmt->execute();
if($is_check_count == true) {