From df16099463be2ce29077ef0744bf240e6f02dce4 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 2 Feb 2022 11:02:34 -0500 Subject: [PATCH] Default limit to 0 which means no limit --- web/includes/Filter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/includes/Filter.php b/web/includes/Filter.php index a155d97a8..fbca41759 100644 --- a/web/includes/Filter.php +++ b/web/includes/Filter.php @@ -227,7 +227,7 @@ class Filter extends ZM_Object { } if ( isset( $this->Query()['limit'] ) ) return $this->{'Query'}['limit']; - return 100; + return 0; #return $this->defaults{'limit'}; }