From: Niels Heinemann Date: Tue, 12 Jan 2016 15:22:39 +0000 (+0100) Subject: Add configuration options to adjust the behavior of recent items stack: 1.) Define... X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=0c464483bd4a0a8e0e591f3fb1d1932ec9446ee7;p=civicrm-core.git Add configuration options to adjust the behavior of recent items stack: 1.) Define stack size, 2.) Decide which components may store items in stack --- diff --git a/CRM/Utils/Recent.php b/CRM/Utils/Recent.php index 659b67381f..dad62bb761 100644 --- a/CRM/Utils/Recent.php +++ b/CRM/Utils/Recent.php @@ -54,7 +54,6 @@ class CRM_Utils_Recent { * @var int */ static private $_maxItems = 20; - /** * Initialize this class and set the static variables. */ @@ -250,5 +249,4 @@ class CRM_Utils_Recent { return $providers; } - }