diff --git a/www/js/controllers/currency-controllers.js b/www/js/controllers/currency-controllers.js
index 7706ec7381adabb877803166e844f2644b7caf6e..3f5e382929888d78f327c15aa927ec0e8b0c01cd 100644
--- a/www/js/controllers/currency-controllers.js
+++ b/www/js/controllers/currency-controllers.js
@@ -73,7 +73,8 @@ function CurrencyLookupController($scope, $state, UIUtils, csCurrency) {
   };
 }
 
-function CurrencyViewController($scope, $q, $translate, $timeout, BMA, UIUtils, csSettings, csCurrency, csNetwork) {
+function CurrencyViewController($scope, $q, $translate, $timeout, $filter,
+  BMA, UIUtils, csSettings, csCurrency, csNetwork) {
   $scope.formData = {
     useRelative: csSettings.data.useRelative
   };
@@ -99,29 +100,21 @@ function CurrencyViewController($scope, $q, $translate, $timeout, BMA, UIUtils,
   $scope.xpercent = 0;
 
   $scope.$on('$ionicView.enter', function(e, state) {
-    $translate('COMMON.DATE_PATTERN')
-    .then(function(datePattern) {
-      $scope.datePattern = datePattern;
-      if (state.stateParams && state.stateParams.name) { // Load by name
-        csCurrency.searchByName(state.stateParams.name)
-        .then(function(currency){
-          $scope.load(currency);
-        });
-      }
-      else {
-        csCurrency.all()
-        .then(function (currencies) {
-          if (currencies && currencies.length > 0) {
-            $scope.load(currencies[0]);
-          }
-        })
-        .catch(UIUtils.onError('ERROR.GET_CURRENCY_FAILED'));
-      }
-    });
-  });
-
-  $scope.$on('$ionicView.beforeLeave', function(){
-    csNetwork.close();
+    if (state.stateParams && state.stateParams.name) { // Load by name
+      csCurrency.searchByName(state.stateParams.name)
+      .then(function(currency){
+        $scope.load(currency);
+      });
+    }
+    else {
+      csCurrency.all()
+      .then(function (currencies) {
+        if (currencies && currencies.length > 0) {
+          $scope.load(currencies[0]);
+        }
+      })
+      .catch(UIUtils.onError('ERROR.GET_CURRENCY_FAILED'));
+    }
   });
 
   $scope.load = function(currency) {