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 /core/functions.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 'core/functions.php')
-rw-r--r-- | core/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/functions.php b/core/functions.php index 35faed4..6ef8894 100644 --- a/core/functions.php +++ b/core/functions.php @@ -265,7 +265,7 @@ function description($string, $length = 200, $replace = ' […]') { #=============================================================================== # Generate a valid slug URL part from a string #=============================================================================== -function makeSlugURL($string, $separator = '-') { +function generateSlug($string, $separator = '-') { $string = strtr(mb_strtolower($string), [ 'ä' => 'ae', 'ö' => 'oe', |