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 | |
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')
-rw-r--r-- | template/admin/html/auth.php | 2 | ||||
-rw-r--r-- | template/admin/rsrc/main.js | 8 |
2 files changed, 5 insertions, 5 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"> diff --git a/template/admin/rsrc/main.js b/template/admin/rsrc/main.js index f6f7884..feb6365 100644 --- a/template/admin/rsrc/main.js +++ b/template/admin/rsrc/main.js @@ -90,7 +90,7 @@ setInterval(function() { //============================================================================== if(document.getElementById("delete-button")) { document.getElementById("delete-button").onclick = function(e) { - return confirm(e.target.getAttribute('data-text')); + return confirm(e.target.getAttribute("data-text")); }; } @@ -100,7 +100,7 @@ if(document.getElementById("delete-button")) { (function() { if(document.getElementById("content-editor")) { var element = document.getElementById("content-editor"); - element.addEventListener('keydown', function(e) { + element.addEventListener("keydown", function(e) { if(e.keyCode === 9 && !e.ctrlKey) { var selectionStart = element.selectionStart; var selectionEnd = element.selectionEnd; @@ -136,7 +136,7 @@ if(document.getElementById("delete-button")) { for(var i = 0; i < items.length; ++i) { items[i].onmousedown = function(e) { - insertEmoticon(node, e.target.getAttribute('data-emoticon')); + insertEmoticon(node, e.target.getAttribute("data-emoticon")); }; } } @@ -153,7 +153,7 @@ if(document.getElementById("delete-button")) { for(var i = 0; i < items.length; ++i) { items[i].onmousedown = function(e) { - insertMarkdown(node, e.target.getAttribute('data-markdown')); + insertMarkdown(node, e.target.getAttribute("data-markdown")); }; } } |