From 075685bb644e6e9f42cc898d54a4927a36f0e389 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Tue, 7 Feb 2012 11:39:56 -0500 Subject: [PATCH] raise limit on listings 100 -> 1000 --- metaform/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metaform/template.php b/metaform/template.php index 4e8d49f..30c0de8 100644 --- a/metaform/template.php +++ b/metaform/template.php @@ -143,7 +143,7 @@ function ~file_name~_main_delete($id) { }~}~~opt_listing {~ function ~file_name~_main_listing() { - $listing_rows = db_get_assocs('~table_name~', 'id~listing_fields_1 {~,~name~~}~', 'order by ~always_field~ limit 100'); + $listing_rows = db_get_assocs('~table_name~', 'id~listing_fields_1 {~,~name~~}~', 'order by ~always_field~ limit 1000'); tem_set('listings', $listing_rows); }~}~ -- 1.7.10.4