diff options
author | Guy Brand <gb@unistra.fr> | 2013-05-10 14:35:28 +0200 |
---|---|---|
committer | Guy Brand <gb@unistra.fr> | 2013-05-10 14:35:28 +0200 |
commit | 83f133d10eda8c1c6b6429c08b2d0722ca88ca17 (patch) | |
tree | 0377662d2335a0e2160175d5be3b95a92f6bb332 /inc/subscription.php | |
parent | bc250e0ee2ec4fba891b53aa4f1814ce648ac71a (diff) | |
parent | 2a5a1456564635ddbca06edbc902e7f820d2a97b (diff) | |
download | rpg-83f133d10eda8c1c6b6429c08b2d0722ca88ca17.tar.gz rpg-83f133d10eda8c1c6b6429c08b2d0722ca88ca17.tar.bz2 |
Merge branch master into stable
Diffstat (limited to 'inc/subscription.php')
-rw-r--r-- | inc/subscription.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/subscription.php b/inc/subscription.php index 2989de032..4248e4b11 100644 --- a/inc/subscription.php +++ b/inc/subscription.php @@ -408,8 +408,8 @@ class Subscription { $tdiff = $dformat->format($df); $DIFF_INLINESTYLES = true; - $df = new Diff(explode("\n", hsc($old_content)), - explode("\n", hsc($new_content))); + $df = new Diff(explode("\n", $old_content), + explode("\n", $new_content)); $dformat = new InlineDiffFormatter(); $hdiff = $dformat->format($df); $hdiff = '<table>'.$hdiff.'</table>'; |