diff options
author | Thomas Lange <code@nerdmind.de> | 2017-07-07 22:30:05 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-07-07 22:30:05 +0200 |
commit | 3e629a13415391e70e4e915f7706f3828912da20 (patch) | |
tree | 9d0d6b59a9e752a9d9a00e11a85affa33ac08887 /template/admin/html/auth.php | |
parent | 8cafd4967655a996d0d2b71073f884e2f28cf6ac (diff) | |
download | blog-3e629a13415391e70e4e915f7706f3828912da20.tar.gz blog-3e629a13415391e70e4e915f7706f3828912da20.tar.xz blog-3e629a13415391e70e4e915f7706f3828912da20.zip |
The function "makeSlugURL" has been renamed to "generateSlug" because the name was misleading because the function did not generate a complete URL, but only a partial string (the slug) for the final URL. By the way, some improvements were made to the code.
Diffstat (limited to 'template/admin/html/auth.php')
-rw-r--r-- | template/admin/html/auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/admin/html/auth.php b/template/admin/html/auth.php index 0435f72..186c096 100644 --- a/template/admin/html/auth.php +++ b/template/admin/html/auth.php @@ -2,7 +2,7 @@ <p><?=$Language->template('authentication_desc')?></p> <form action="" method="POST"> - <input type="hidden" name="token" value="<?=Application::getSecurityToken()?>" /> + <input type="hidden" name="token" value="<?=$FORM['TOKEN']?>" /> <?php if($FORM['INFO']): ?> <div class="flex flex-direction-column"> |