From 39fad4e75b5e70922002de249fc03ce59657a8a1 Mon Sep 17 00:00:00 2001 From: Angie Byron <webchick@24967.no-reply.drupal.org> Date: Mon, 6 Oct 2008 23:15:32 +0000 Subject: [PATCH] #268584 by agentrickard, Rob Loach, and catch: Add a hidden variable for the number of terms displayed on the term admin page. --- modules/taxonomy/taxonomy.admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc index 7b4cfe85038b..238c3d0da42c 100644 --- a/modules/taxonomy/taxonomy.admin.inc +++ b/modules/taxonomy/taxonomy.admin.inc @@ -251,7 +251,7 @@ function taxonomy_overview_terms(&$form_state, $vocabulary) { ); $page = isset($_GET['page']) ? $_GET['page'] : 0; - $page_increment = 10; // Number of terms per page. + $page_increment = variable_get('taxonomy_terms_per_page_admin', 100); // Number of terms per page. $page_entries = 0; // Elements shown on this page. $before_entries = 0; // Elements at the root level before this page. $after_entries = 0; // Elements at the root level after this page. -- GitLab