diff --git a/module/VuFind/src/VuFind/Controller/AuthorityController.php b/module/VuFind/src/VuFind/Controller/AuthorityController.php
index d100c7f8b1896983ec83e7c6a5b7f0577bd00174..4491051d9fb42b998df4630b1805ca70a7e26e8e 100644
--- a/module/VuFind/src/VuFind/Controller/AuthorityController.php
+++ b/module/VuFind/src/VuFind/Controller/AuthorityController.php
@@ -76,14 +76,12 @@ class AuthorityController extends AbstractSearch
     public function recordAction()
     {
         $id = $this->params()->fromQuery('id');
-        $cfg = $this->serviceLocator->get('Config');
-        $tabConfig = $cfg['vufind']['recorddriver_tabs'];
         $driver = $this->serviceLocator->get(\VuFind\Record\Loader::class)
             ->load($id, 'SolrAuth');
         $request = $this->getRequest();
         $tabs = $this->serviceLocator
             ->get(\VuFind\RecordTab\PluginManager::class)
-            ->getTabsForRecord($driver, $tabConfig, $request);
+            ->getTabsForRecord($driver, $this->getRecordTabConfig(), $request);
         return $this->createViewModel(['driver' => $driver, 'tabs' => $tabs]);
     }