Mysqli errors: Trying to access array offset on value of type bool. Fixed. Please...
[fa-stable.git] / gl / includes / db / gl_db_rates.inc
index 4118492ef7e7cdd7e56e4323954e2aa95942eab5..525a6e2eea151696f44f61e2f28209021cb4715e 100644 (file)
@@ -32,7 +32,7 @@ function get_date_exchange_rate($curr_code, $date_)
        if(db_num_rows($result) == 0) 
                return 0;
        $row = db_fetch($result);
-               return $row[0];
+       return $row[0];
 }
 
 /*
@@ -126,7 +126,7 @@ function retrieve_exrate($curr_b, $date)
 }
 //-----------------------------------------------------------------------------
 
-function get_extern_rate($curr_b, $provider = 'ECB', $date) 
+function get_extern_rate($curr_b, $provider, $date) 
 {
        global  $path_to_root;