summaryrefslogtreecommitdiff
path: root/framework/I18N/core/MessageSource_XLIFF.php
diff options
context:
space:
mode:
authorwei <>2006-11-28 23:34:13 +0000
committerwei <>2006-11-28 23:34:13 +0000
commita8b0d83c6b2635784d98d2814782590472359ec3 (patch)
tree824dd4a7efc05b3de51bf4f677c6d0096a143b46 /framework/I18N/core/MessageSource_XLIFF.php
parentf4925fce58f1827515ced2c32bb12f2aa977a1f2 (diff)
fixed #463
Diffstat (limited to 'framework/I18N/core/MessageSource_XLIFF.php')
-rw-r--r--framework/I18N/core/MessageSource_XLIFF.php3
1 files changed, 2 insertions, 1 deletions
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);