From b16c9cf50a1b2ca709640f19d9a80aede83c0bdf Mon Sep 17 00:00:00 2001 From: "Christophe.Boulain" <> Date: Tue, 16 Feb 2010 13:45:07 +0000 Subject: Fixed Issue#223 --- HISTORY | 1 + framework/Xml/TXmlDocument.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY b/HISTORY index 1e84bc15..525915ce 100644 --- a/HISTORY +++ b/HISTORY @@ -19,6 +19,7 @@ BUG: Issue#200 - TShellApplication failed when no service are defined in applica BUG: Issue#208 - TDbConnection.Charset not working properly (googlenew at pcforum.hu, Christophe) BUG: Issue#212 - Mistaken query executed by TMysqlMetaData (pbenny, Christophe) BUG: Issue#216 - TTabPanel doesn't preserve active tab on callback request (googlenew at pcforum.hu,Christophe) +BUG: Issue~223 - TXmlElement doesn't support all types in attributes - fails to save (Christophe) BUG: Typo in TBoundColumn (Robin) BUG: TActiveDatePicker js error when date format does not have the 3 elements (Christophe) ENH: Add property ClientScriptManagerClass to TPageService and releated changes in TPage.getClientScript() (Yves) diff --git a/framework/Xml/TXmlDocument.php b/framework/Xml/TXmlDocument.php index 7d506852..96340baf 100644 --- a/framework/Xml/TXmlDocument.php +++ b/framework/Xml/TXmlDocument.php @@ -139,7 +139,7 @@ class TXmlElement extends TComponent */ public function setAttribute($name,$value) { - $this->getAttributes()->add($name,$value); + $this->getAttributes()->add($name,TPropertyValue::ensureString($value)); } /** -- cgit v1.2.3