summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2021-02-10 13:58:58 +0000
committerGreg Roach <greg@subaqua.co.uk>2021-02-10 13:58:58 +0000
commit60ef53afdbeb73264749b333482a76e2b1e77566 (patch)
tree54368ce7bcde3f9c5f46224534362ff7126259c6 /app
parent7c2c99fad7cacd17c98be88238ff735d82c6351b (diff)
downloadwebtrees-60ef53afdbeb73264749b333482a76e2b1e77566.tar.gz
webtrees-60ef53afdbeb73264749b333482a76e2b1e77566.tar.bz2
webtrees-60ef53afdbeb73264749b333482a76e2b1e77566.zip
Fix: #3718 - wrong list URL in control panel
Diffstat (limited to 'app')
-rw-r--r--app/Http/RequestHandlers/ControlPanel.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Http/RequestHandlers/ControlPanel.php b/app/Http/RequestHandlers/ControlPanel.php
index 4aef586e7d..3afeca0cf5 100644
--- a/app/Http/RequestHandlers/ControlPanel.php
+++ b/app/Http/RequestHandlers/ControlPanel.php
@@ -162,7 +162,7 @@ class ControlPanel implements RequestHandlerInterface
'repositories' => $this->totalRepositories(),
'notes' => $this->totalNotes(),
'submitters' => $this->totalSubmitters(),
- 'individual_list_module' => $this->module_service->findByInterface(IndividualListModule::class)->first(),
+ 'individual_list_module' => $this->module_service->findByInterface(IndividualListModule::class)->last(),
'family_list_module' => $this->module_service->findByInterface(FamilyListModule::class)->first(),
'media_list_module' => $this->module_service->findByInterface(MediaListModule::class)->first(),
'note_list_module' => $this->module_service->findByInterface(NoteListModule::class)->first(),