DataObjects/Core_curr_rate.php
authorAlan Knowles <alan@roojs.com>
Mon, 5 Oct 2015 07:25:11 +0000 (15:25 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 5 Oct 2015 07:25:11 +0000 (15:25 +0800)
DataObjects/Core_curr_rate.php

index 99a06e4..20d8f0f 100644 (file)
@@ -66,20 +66,24 @@ class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject
        
              // this may fail...
         $f = @file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
        
              // this may fail...
         $f = @file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
-        if (strlen($f)) {
-            
-            $dom = simplexml_load_file($target);
-            $rates['EUR'] = 1.0;
-            $rates['TWD'] = 46.7008412;
-            $rates['VND'] = 26405.3;
-           
-            foreach($dom->Cube->Cube->Cube as $c) {
-               //echo '<PRE>';print_r($c );
-                $rates[(string)$c['currency']] = (string)$c['rate'];
-            }
-            $rates['RMB'] = $rates['CNY'] ;
+        if (!strlen($f)) {
+            return false;
         }
         
         }
         
+        $dom = simplexml_load_file($target);
+        $rates['EUR'] = 1.0;
+        $rates['TWD'] = 46.7008412;
+        $rates['VND'] = 26405.3;
+       
+        foreach($dom->Cube->Cube->Cube as $c) {
+           //echo '<PRE>';print_r($c );
+            $rates[(string)$c['currency']] = (string)$c['rate'];
+        }
+        $rates['RMB'] = $rates['CNY'] ;
+        
+        
+        
+