diff options
-rw-r--r-- | include/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php index b866994..e920ef1 100644 --- a/include/functions.php +++ b/include/functions.php @@ -3,6 +3,6 @@ # Remove line breaks and tabs from a string #=============================================================================== function removeLineBreaksAndTabs($string) { - return str_replace(["\r\n", "\r", "\n", "\t"], NULL, $string); + return str_replace(["\r", "\n", "\t"], NULL, $string); } ?>
\ No newline at end of file |