diff --git a/module/VuFind/src/VuFind/Controller/MyResearchController.php b/module/VuFind/src/VuFind/Controller/MyResearchController.php
index d71271339eabf7514f084bd15aefdf0ed5a5f380..4e65c2565109b4fbe1f1f60f9484a1530ad7e21a 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);
     }