summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pts-core/functions/pts-functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pts-core/functions/pts-functions.php b/pts-core/functions/pts-functions.php
index d9deaca..a164b47 100644
--- a/pts-core/functions/pts-functions.php
+++ b/pts-core/functions/pts-functions.php
@@ -252,7 +252,7 @@ function pts_trim_spaces($string)
{
while(strpos($string, " ") !== false)
{
- $string = str_replace(" ", "", $string);
+ $string = str_replace(" ", " ", $string);
}
return trim($string);