From fd6051646cf80954ecfb018e87b4fa91a23c43a6 Mon Sep 17 00:00:00 2001 From: Marcus Hill Date: Sun, 1 May 2022 18:51:53 +0100 Subject: [PATCH] Fix merge conflict --- functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index cc8f8675..af8f9e59 100644 --- a/functions.php +++ b/functions.php @@ -405,9 +405,10 @@ function getDomainExpirationDate($name){ return '0000-00-00'; } + function clean_file_name($string){ $string = strtolower($string); - + // Gets rid of spaces $clean_file_name = preg_replace('/\s/', '', $string);