diff --git a/module/VuFind/src/VuFind/Controller/MyResearchController.php b/module/VuFind/src/VuFind/Controller/MyResearchController.php
index 19dc3f8390d7c87e76abcde4ac4452dc7433f1ac..dc5efd74221e9617cf34ebe0594dd1ddfb11d311 100644
--- a/module/VuFind/src/VuFind/Controller/MyResearchController.php
+++ b/module/VuFind/src/VuFind/Controller/MyResearchController.php
@@ -1091,8 +1091,8 @@ class MyResearchController extends AbstractBase
                     throw new \Exception();
                 }
                 $source = isset($row['source']) ? $row['source'] : 'VuFind';
-                $row['driver'] = $this->getServiceLocator()->get('VuFind\RecordLoader')
-                    ->load($row['id'], $source);
+                $row['driver'] = $this->getServiceLocator()
+                    ->get('VuFind\RecordLoader')->load($row['id'], $source);
                 $row['title'] = $row['driver']->getShortTitle();
             } catch (\Exception $e) {
                 if (!isset($row['title'])) {