diff options
author | xue <> | 2006-12-01 12:28:55 +0000 |
---|---|---|
committer | xue <> | 2006-12-01 12:28:55 +0000 |
commit | 17f49a9bc71d88c9b3e2f31a161f3689c136ac16 (patch) | |
tree | fc77b9c75927cd56281417843a318e85c39ce729 /framework/I18N | |
parent | 074032e0270ae70eed481a082158dc9554aaa1db (diff) |
merge from 3.0 branch till 1531.
Diffstat (limited to 'framework/I18N')
-rw-r--r-- | framework/I18N/core/DateTimeFormatInfo.php | 2 | ||||
-rw-r--r-- | framework/I18N/core/MessageSource_XLIFF.php | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/framework/I18N/core/DateTimeFormatInfo.php b/framework/I18N/core/DateTimeFormatInfo.php index 4d8dafe8..fb6793c5 100644 --- a/framework/I18N/core/DateTimeFormatInfo.php +++ b/framework/I18N/core/DateTimeFormatInfo.php @@ -166,7 +166,7 @@ class DateTimeFormatInfo * @return DateTimeFormatInfo DateTimeFormatInfo for the specified
* culture.
*/
- function getInstance($culture=null)
+ static function getInstance($culture=null)
{
if ($culture instanceof CultureInfo)
diff --git a/framework/I18N/core/MessageSource_XLIFF.php b/framework/I18N/core/MessageSource_XLIFF.php index 7f2f27c5..79d4f38c 100644 --- a/framework/I18N/core/MessageSource_XLIFF.php +++ b/framework/I18N/core/MessageSource_XLIFF.php @@ -280,7 +280,8 @@ class MessageSource_XLIFF extends MessageSource throw new TIOException("Unable to save to file {$filename}, file must be writable.");
//create a new dom, import the existing xml
- $dom = DOMDocument::load($filename);
+ $dom = new DOMDocument();
+ $dom->load($filename);
//find the body element
$xpath = new DomXPath($dom);
|