diff options
author | wei <> | 2006-12-03 22:44:38 +0000 |
---|---|---|
committer | wei <> | 2006-12-03 22:44:38 +0000 |
commit | fdba32fd47c5511a8593f517c86a8ec3492ab46a (patch) | |
tree | bf4cfda9c5fab81d1d39bd2fcc6daf60bc9db1a1 /framework/I18N | |
parent | c6290af5ce4d4f841f487284fe6d9dc405bd0757 (diff) |
Fix #476
Diffstat (limited to 'framework/I18N')
-rw-r--r-- | framework/I18N/core/MessageSource_XLIFF.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/framework/I18N/core/MessageSource_XLIFF.php b/framework/I18N/core/MessageSource_XLIFF.php index 79d4f38c..1f537932 100644 --- a/framework/I18N/core/MessageSource_XLIFF.php +++ b/framework/I18N/core/MessageSource_XLIFF.php @@ -287,7 +287,11 @@ class MessageSource_XLIFF extends MessageSource $xpath = new DomXPath($dom);
$body = $xpath->query('//body')->item(0);
- $count = $xpath->query('//trans-unit')->length;
+ $lastNodes = $xpath->query('//trans-unit[last()]');
+ if(($last=$lastNodes->item(0))!==null)
+ $count = intval($last->getAttribute('id'));
+ else
+ $count = 0;
//for each message add it to the XML file using DOM
foreach($messages as $message)
|