Fix error

This commit is contained in:
James Cole
2022-12-21 19:12:47 +01:00
parent 395b6ecb76
commit e43372b2ce

View File

@@ -148,7 +148,7 @@ class RegisterController extends Controller
$allowRegistration = $this->allowedToRegister(); $allowRegistration = $this->allowedToRegister();
if (false === $allowRegistration) { 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')); return view('error', compact('message'));
} }