aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2018-01-20 18:49:05 +0100
committerThomas Lange <code@nerdmind.de>2018-01-20 18:49:05 +0100
commit1a896a9bc176e1af35ee47ebe37cb59d613d2a4f (patch)
treeec2992660f338f180c687159d05fee0d92319acf /include
parent7c02cc7dee9d3b0440c4ccabc18762e8b87d1e24 (diff)
downloadbigpipe-1a896a9bc176e1af35ee47ebe37cb59d613d2a4f.tar.gz
bigpipe-1a896a9bc176e1af35ee47ebe37cb59d613d2a4f.tar.xz
bigpipe-1a896a9bc176e1af35ee47ebe37cb59d613d2a4f.zip
Fix inconsistent line separators across files
The development of this project began several years ago on a Windows system until I switched to GNU\Linux. Therefore, some files contained CRLF as line separators, now replaced with LF.
Diffstat (limited to 'include')
-rw-r--r--include/functions.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/functions.php b/include/functions.php
index fd46c63..b866994 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -1,8 +1,8 @@
-<?php
-#===============================================================================
-# Remove line breaks and tabs from a string
-#===============================================================================
-function removeLineBreaksAndTabs($string) {
- return str_replace(["\r\n", "\r", "\n", "\t"], NULL, $string);
-}
+<?php
+#===============================================================================
+# Remove line breaks and tabs from a string
+#===============================================================================
+function removeLineBreaksAndTabs($string) {
+ return str_replace(["\r\n", "\r", "\n", "\t"], NULL, $string);
+}
?> \ No newline at end of file