JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
raise limit on listings 100 -> 1000
authorJason Woofenden <jason@jasonwoof.com>
Tue, 7 Feb 2012 16:39:56 +0000 (11:39 -0500)
committerJason Woofenden <jason@jasonwoof.com>
Tue, 7 Feb 2012 16:39:56 +0000 (11:39 -0500)
metaform/template.php

index 4e8d49f..30c0de8 100644 (file)
@@ -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);
 }~}~