From: <gem...@li...> - 2012-06-26 13:56:16
|
Revision: 790 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=790&view=rev Author: mennodekker Date: 2012-06-26 13:56:06 +0000 (Tue, 26 Jun 2012) Log Message: ----------- Seems strange that min and max of slider and manual entry are different Modified Paths: -------------- trunk/library/classes/Gems/Default/TokenPlanAction.php Modified: trunk/library/classes/Gems/Default/TokenPlanAction.php =================================================================== --- trunk/library/classes/Gems/Default/TokenPlanAction.php 2012-06-26 13:13:53 UTC (rev 789) +++ trunk/library/classes/Gems/Default/TokenPlanAction.php 2012-06-26 13:56:06 UTC (rev 790) @@ -225,8 +225,8 @@ } // Create date range elements - $min = -91; - $max = 91; + $min = $this->minPeriod; + $max = $this->maxPeriod; $size = max(strlen($min), strlen($max)); $options = array( This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |