diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Web/UI/WebControls/TRangeValidator.php | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -8,6 +8,7 @@ BUG: Ticket#661 - ActiveRecord PostgreSQL 7.3.2 Support doesn't work (Qiang) BUG: Ticket#662 - Ensure TForm to properly encode the ampersand in action URL (Qiang) BUG: Ticket#666 - TActiveRecord::deleteAll() method always requires a criteria or null parameter (Qiang) BUG: Ticket#670 - TDatePicker: Year Issue (Christophe) +BUG: Ticket#689 - TRangeValidator: Problem in clientscript when MaxValue=<%= 0 %> (Qiang) ENH: Ticket#577 - Added image button support for TPager (Qiang) ENH: Ticket#623 - TMemCache to support multiple servers (Carl) ENH: Ticket#664 - Added support to styling thead, tbody, tfoot of TDataGrid (Qiang) diff --git a/framework/Web/UI/WebControls/TRangeValidator.php b/framework/Web/UI/WebControls/TRangeValidator.php index 369b887b..36dbcdca 100644 --- a/framework/Web/UI/WebControls/TRangeValidator.php +++ b/framework/Web/UI/WebControls/TRangeValidator.php @@ -76,7 +76,7 @@ class TRangeValidator extends TBaseValidator */
public function setMinValue($value)
{
- $this->setViewState('MinValue',$value,'');
+ $this->setViewState('MinValue',TPropertyValue::ensureString($value),'');
}
/**
@@ -93,7 +93,7 @@ class TRangeValidator extends TBaseValidator */
public function setMaxValue($value)
{
- $this->setViewState('MaxValue',$value,'');
+ $this->setViewState('MaxValue',TPropertyValue::ensureString($value),'');
}
/**
|