update to version 2.3.2 (build 394)

fix mysql error bugs
This commit is contained in:
2021-03-23 12:47:00 +08:00
parent e77b9d4970
commit 66b73973b4
2 changed files with 3 additions and 3 deletions

View File

@@ -18,8 +18,8 @@ use ZM\Utils\DataProvider;
class ConsoleApplication extends Application class ConsoleApplication extends Application
{ {
const VERSION_ID = 388; const VERSION_ID = 394;
const VERSION = "2.3.1"; const VERSION = "2.3.2";
public function __construct(string $name = 'UNKNOWN') { public function __construct(string $name = 'UNKNOWN') {
define("ZM_VERSION_ID", self::VERSION_ID); define("ZM_VERSION_ID", self::VERSION_ID);

View File

@@ -61,7 +61,7 @@ class Table
if ($msg == "") { if ($msg == "") {
$msg .= $k . " $operator ? "; $msg .= $k . " $operator ? ";
} else { } else {
$msg .= "AND " . $k . " $operator ?"; $msg .= " AND " . $k . " $operator ?";
} }
$param[] = $v; $param[] = $v;
} }