From 148df2834575f3d2d7c525c544d762232ea02950 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Fri, 27 Jul 2012 10:03:06 +0000 Subject: [PATCH] The "Preferences" pages now allows a user to: - change her/his favorite language - set a global default for the length of all lists, overriding the system-wide configuration. SVN:trunk[2136] --- core/bulkchange.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/bulkchange.class.inc.php b/core/bulkchange.class.inc.php index 7986124ca..47e31a215 100644 --- a/core/bulkchange.class.inc.php +++ b/core/bulkchange.class.inc.php @@ -914,7 +914,7 @@ class BulkChange $bLimitExceeded = true; if (!$bShowAll) { - $iMaxObjects = MetaModel::GetConfig()->GetMinDisplayLimit(); + $iMaxObjects = appUserPreferences::GetPref('default_page_size', MetaModel::GetConfig()->GetMinDisplayLimit()); $oBulkChanges->SetLimit($iMaxObjects); } }