From 3e629a13415391e70e4e915f7706f3828912da20 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Fri, 7 Jul 2017 22:30:05 +0200 Subject: 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. --- core/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/functions.php') 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', -- cgit v1.2.3