diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-12 11:50:02 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-12 11:50:02 +0200 |
commit | 7930ae84f8d3e6e8893ebdf1b0177203ee8c8b6d (patch) | |
tree | adf5e6468e5559f3a8cf01ddf4136109c6851aa7 /admin | |
parent | 4ac3db5bbf609dfb53daed1615b00c36a6282e3e (diff) | |
download | blog-7930ae84f8d3e6e8893ebdf1b0177203ee8c8b6d.tar.gz blog-7930ae84f8d3e6e8893ebdf1b0177203ee8c8b6d.tar.xz blog-7930ae84f8d3e6e8893ebdf1b0177203ee8c8b6d.zip |
Inconsistency in the admin template parameters fixed (this does not affect any template parameters for the frontend templates).
Diffstat (limited to 'admin')
-rw-r--r-- | admin/auth.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/admin/auth.php b/admin/auth.php index b90db92..160516b 100644 --- a/admin/auth.php +++ b/admin/auth.php @@ -60,9 +60,7 @@ else { try { $AuthTemplate = Template\Factory::build('auth'); $AuthTemplate->set('FORM', [ - 'INFO' => [ - 'LIST' => $messages ?? [], - ], + 'INFO' => $messages ?? [], 'DATA' => [ 'USERNAME' => HTTP::POST('username'), 'PASSWORD' => HTTP::POST('password'), |