diff options
Diffstat (limited to 'app/controllers/admin/login_style.php')
| -rw-r--r-- | app/controllers/admin/login_style.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/admin/login_style.php b/app/controllers/admin/login_style.php index a5a6df4..18d5166 100644 --- a/app/controllers/admin/login_style.php +++ b/app/controllers/admin/login_style.php @@ -166,14 +166,14 @@ class Admin_LoginStyleController extends AuthenticatedController $this->faq_entries = LoginFaq::findBySql('1'); } - public function edit_faq_action(LoginFaq $entry = null) + public function edit_faq_action(?LoginFaq $entry = null) { PageLayout::setTitle( $entry->isNew() ? _('Hinweistext hinzufügen') : _('Hinweistext bearbeiten') ); } - public function store_faq_action(LoginFaq $entry = null) + public function store_faq_action(?LoginFaq $entry = null) { CSRFProtection::verifyUnsafeRequest(); |
