Bug Fix in DB IO with parameter detection with <>

This commit is contained in:
Clemens Schwaighofer
2023-11-29 10:50:25 +09:00
parent 62ce863f2c
commit a1614bace2
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -385,7 +385,7 @@ class DateTime
} else {
$str = implode(', ', array_slice($formatted, 0, -1));
if (!empty($formatted[count($formatted) - 1])) {
$str .= ' and ' . $formatted[count($formatted) - 1];
$str .= ' and ' . (string)array_pop($formatted);
}
return $negative . $str;
}