summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY2
-rw-r--r--framework/Web/UI/WebControls/TStyle.php4
-rw-r--r--framework/Web/UI/WebControls/TTableCell.php2
-rw-r--r--framework/Web/UI/WebControls/TTableRow.php2
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)