From a1aa4ef61cd72fd82fab3c43c8a61fb97daae072 Mon Sep 17 00:00:00 2001 From: Leon Stringer Date: Fri, 5 Dec 2025 10:54:53 +0000 Subject: [PATCH] Fix get_records_list() default param values --- docs/apis/core/dml/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/apis/core/dml/index.md b/docs/apis/core/dml/index.md index 9666b7b177..a32fef4735 100644 --- a/docs/apis/core/dml/index.md +++ b/docs/apis/core/dml/index.md @@ -201,8 +201,8 @@ public function get_records_list( array $values, $sort = *, $fields = '*', - $limitfrom = *, - $limitnum = '' + $limitfrom = 0, + $limitnum = 0 ) ```