summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-06 23:15:32 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-06 23:15:32 +0000
commit39fad4e75b5e70922002de249fc03ce59657a8a1 (patch)
tree133c1ed83c8502de63a51b8338ba1300838ee491
parent43893763c52d47529c7c3c1dafb548c9dd4d1e20 (diff)
downloadbrdo-39fad4e75b5e70922002de249fc03ce59657a8a1.tar.gz
brdo-39fad4e75b5e70922002de249fc03ce59657a8a1.tar.bz2
#268584 by agentrickard, Rob Loach, and catch: Add a hidden variable for the number of terms displayed on the term admin page.
-rw-r--r--modules/taxonomy/taxonomy.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
index 7b4cfe850..238c3d0da 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.