From 17864540c497e7e64b56a3ebbef9d0fbe2fc556d Mon Sep 17 00:00:00 2001 From: xue <> Date: Tue, 28 Mar 2006 02:36:27 +0000 Subject: Fixed #103 --- HISTORY | 2 ++ framework/Web/UI/WebControls/TStyle.php | 4 ++-- framework/Web/UI/WebControls/TTableCell.php | 2 +- framework/Web/UI/WebControls/TTableRow.php | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/HISTORY b/HISTORY index 5bae4e3e..88e031ff 100644 --- a/HISTORY +++ b/HISTORY @@ -4,6 +4,7 @@ BUG: Ticket#88 - Unclosed HTML tag in TDatePicker and TColorPicker (Qiang) BUG: Ticket#85 - Undefined TDataGrid::setSelectedIndex (Qiang) BUG: Ticket#87 - Typo in IDbConnection (Qiang) BUG: Ticket#95 - Typo in TTemplateControl::registerContentPlaceHolder (Qiang) +BUG: Ticket#103 - Typo in TStyle::setVerticalAlign (Qiang) BUG: SF#1446846 - Typo in THead (Qiang) BUG: SF#1432624 - Incorrect documentation about caching expiry (Qiang) BUG: THttpSession fails when user storage module is used (Qiang) @@ -17,6 +18,7 @@ NEW: TSQLMap module (Wei) NEW: TStack class (Qiang) NEW: TImageMap control (Qiang) NEW: TWizard control (Qiang) +NEW: Added TVarDumper and PradoBase::varDump() (Qiang) Version 3.0b March 6, 2006 ========================== diff --git a/framework/Web/UI/WebControls/TStyle.php b/framework/Web/UI/WebControls/TStyle.php index c6163367..6bc413e4 100644 --- a/framework/Web/UI/WebControls/TStyle.php +++ b/framework/Web/UI/WebControls/TStyle.php @@ -681,12 +681,12 @@ class TTableItemStyle extends TStyle /** * Sets the vertical alignment of the contents within the table item. - * Valid values include 'NotSet','Top','Bottom','Middel' + * Valid values include 'NotSet','Top','Bottom','Middle' * @param string the horizontal alignment */ public function setVerticalAlign($value) { - $this->_verticalAlign=TPropertyValue::ensureEnum($value,array('NotSet','Top','Bottom','Middel')); + $this->_verticalAlign=TPropertyValue::ensureEnum($value,array('NotSet','Top','Bottom','Middle')); } /** diff --git a/framework/Web/UI/WebControls/TTableCell.php b/framework/Web/UI/WebControls/TTableCell.php index 747734cb..826602ee 100644 --- a/framework/Web/UI/WebControls/TTableCell.php +++ b/framework/Web/UI/WebControls/TTableCell.php @@ -86,7 +86,7 @@ class TTableCell extends TWebControl /** * Sets the vertical alignment of the contents within the table item. - * Valid values include 'NotSet','Top','Bottom','Middel' + * Valid values include 'NotSet','Top','Bottom','Middle' * @param string the horizontal alignment */ public function setVerticalAlign($value) diff --git a/framework/Web/UI/WebControls/TTableRow.php b/framework/Web/UI/WebControls/TTableRow.php index 202ad596..04a1555d 100644 --- a/framework/Web/UI/WebControls/TTableRow.php +++ b/framework/Web/UI/WebControls/TTableRow.php @@ -109,7 +109,7 @@ class TTableRow extends TWebControl /** * Sets the vertical alignment of the contents within the table item. - * Valid values include 'NotSet','Top','Bottom','Middel' + * Valid values include 'NotSet','Top','Bottom','Middle' * @param string the horizontal alignment */ public function setVerticalAlign($value) -- cgit v1.2.3