Merge branch 'fronkdev' into 'master'

Added preorder import Dobl-Zwaring

See merge request fronk/thetool!343
This commit is contained in:
Frank Schubert
2024-04-24 15:46:39 +00:00
3 changed files with 939 additions and 1 deletions
+1 -1
View File
@@ -411,7 +411,7 @@ class PreorderModel {
if(is_array($limit) && count($limit)) {
if(is_numeric($limit['start']) && is_numeric($limit['count'])) {
$sql .= " LIMIT ".$limit['start'].", ".$limit['count'];
} elseif(is_numeric($count)) {
} elseif(is_numeric($limit['count'])) {
$sql .= " LIMIT ".$limit['count'];
}
}