aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Include/myFunctions.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-03-15 22:37:50 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-03-15 22:37:50 +0000
commite24dd78f33ee566871ed679065d78251a2da6774 (patch)
tree1302bae7fd7d8524452dcf51f391f98d7273333b /h-source/Application/Include/myFunctions.php
parentb7a2393f9e78cf708e4c0d7e3858c8b646835a09 (diff)
changed functions.php
Diffstat (limited to 'h-source/Application/Include/myFunctions.php')
-rw-r--r--h-source/Application/Include/myFunctions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/h-source/Application/Include/myFunctions.php b/h-source/Application/Include/myFunctions.php
index 70c0b4f..4bff411 100644
--- a/h-source/Application/Include/myFunctions.php
+++ b/h-source/Application/Include/myFunctions.php
@@ -173,8 +173,8 @@ function htmlDiff($old, $new)
$old = str_replace("\r\n"," \r\n ",$old);
$new = str_replace("\r\n"," \r\n ",$new);
- $old = str_replace("\n"," \n ",$old);
- $new = str_replace("\n"," \n ",$new);
+// $old = str_replace("\n"," \n ",$old);
+// $new = str_replace("\n"," \n ",$new);
$ret = null;
$diff = diff(removeEmptyStrings(explode(' ', $old)),removeEmptyStrings(explode(' ', $new)));