From 15e28d0da50ac80a5a9bad4248b40ff3a8a37d15 Mon Sep 17 00:00:00 2001
From: Fabian Erni <ferni@snowflake.ch>
Date: Fri, 15 Feb 2013 13:24:52 +0100
Subject: [PATCH] Update
 module/VuFind/src/VuFind/Controller/MyResearchController.php

Configuration was loaded into $config, but $configArray was checked
---
 module/VuFind/src/VuFind/Controller/MyResearchController.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/module/VuFind/src/VuFind/Controller/MyResearchController.php b/module/VuFind/src/VuFind/Controller/MyResearchController.php
index d71271339ea..4e65c256510 100644
--- a/module/VuFind/src/VuFind/Controller/MyResearchController.php
+++ b/module/VuFind/src/VuFind/Controller/MyResearchController.php
@@ -82,8 +82,8 @@ class MyResearchController extends AbstractBase
         }
 
         $config = ConfigReader::getConfig();
-        $page = isset($configArray->Site->defaultAccountPage)
-            ? $configArray->Site->defaultAccountPage : 'Favorites';
+        $page = isset($config->Site->defaultAccountPage)
+            ? $config->Site->defaultAccountPage : 'Favorites';
         return $this->forwardTo('MyResearch', $page);
     }
 
-- 
GitLab