summaryrefslogtreecommitdiffstats
path: root/admin/page/update.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-07-07 22:30:05 +0200
committerThomas Lange <code@nerdmind.de>2017-07-07 22:30:05 +0200
commit3e629a13415391e70e4e915f7706f3828912da20 (patch)
tree9d0d6b59a9e752a9d9a00e11a85affa33ac08887 /admin/page/update.php
parent8cafd4967655a996d0d2b71073f884e2f28cf6ac (diff)
downloadblog-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 'admin/page/update.php')
-rw-r--r--admin/page/update.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/page/update.php b/admin/page/update.php
index 18c9785..f8d790a 100644
--- a/admin/page/update.php
+++ b/admin/page/update.php
@@ -19,12 +19,12 @@ try {
if(HTTP::issetPOST('user', 'slug', 'name', 'body', 'argv', 'time_insert', 'time_update', 'update')) {
$Attribute->set('user', HTTP::POST('user'));
- $Attribute->set('slug', HTTP::POST('slug') ? HTTP::POST('slug') : makeSlugURL(HTTP::POST('name')));
+ $Attribute->set('slug', HTTP::POST('slug') ? HTTP::POST('slug') : generateSlug(HTTP::POST('name')));
$Attribute->set('name', HTTP::POST('name') ? HTTP::POST('name') : NULL);
$Attribute->set('body', HTTP::POST('body') ? HTTP::POST('body') : NULL);
$Attribute->set('argv', HTTP::POST('argv') ? HTTP::POST('argv') : NULL);
- $Attribute->set('time_insert', HTTP::POST('time_insert') ? HTTP::POST('time_insert') : date('Y-m-d H:i:s'));
- $Attribute->set('time_update', HTTP::POST('time_update') ? HTTP::POST('time_update') : date('Y-m-d H:i:s'));
+ $Attribute->set('time_insert', HTTP::POST('time_insert') ?: date('Y-m-d H:i:s'));
+ $Attribute->set('time_update', HTTP::POST('time_update') ?: date('Y-m-d H:i:s'));
if(HTTP::issetPOST(['token' => Application::getSecurityToken()])) {
try {