diff options
author | David Rothstein <drothstein@gmail.com> | 2014-05-05 14:47:42 -0400 |
---|---|---|
committer | David Rothstein <drothstein@gmail.com> | 2014-05-05 14:47:42 -0400 |
commit | 972e6a9a3d66139cffba44313eac95e717e34843 (patch) | |
tree | 4f85b1b391bf84b90a4c88b5424505057b603ff8 | |
parent | ee60a20fc3544497a0f37f9ce3846b2396a84263 (diff) | |
download | brdo-972e6a9a3d66139cffba44313eac95e717e34843.tar.gz brdo-972e6a9a3d66139cffba44313eac95e717e34843.tar.bz2 |
Issue #2130461 by Alan D.: Tracker pager is inconsistent with every other pager in core.
-rw-r--r-- | CHANGELOG.txt | 2 | ||||
-rw-r--r-- | modules/tracker/tracker.pages.inc | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 62666c148..74cfa75a5 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,8 @@ Drupal 7.28, xxxx-xx-xx (development version) ----------------------- +- Made the pager on the Tracker module listing pages show the same number of + items as other pagers throughout Drupal core (minor UI change). - Fixed a bug which caused caches not to be properly cleared when a file entity was saved or deleted. - Added several missing countries to the default list returned by diff --git a/modules/tracker/tracker.pages.inc b/modules/tracker/tracker.pages.inc index baa99866c..fa16b657f 100644 --- a/modules/tracker/tracker.pages.inc +++ b/modules/tracker/tracker.pages.inc @@ -120,7 +120,6 @@ function tracker_page($account = NULL, $set_title = FALSE) { ); $page['pager'] = array( '#theme' => 'pager', - '#quantity' => 25, '#weight' => 10, ); $page['#sorted'] = TRUE; |