From e43372b2ce171aab01d87dec79a1f17727660244 Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 21 Dec 2022 19:12:47 +0100 Subject: [PATCH] Fix error --- app/Http/Controllers/Auth/RegisterController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index c7a5511215..e21fa46e75 100644 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -148,7 +148,7 @@ class RegisterController extends Controller $allowRegistration = $this->allowedToRegister(); if (false === $allowRegistration) { - $message = 'Registration is currently not available.'; + $message = 'Registration is currently not available. If you are the administrator, you can enable this in the administration.'; return view('error', compact('message')); }