Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 987)
+++ trunk/CHANGELOG	(revision 988)
@@ -11,6 +11,9 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.0 -------------------------------------
+15-June-2009 Dietrich Roland Pehlke (aldus)
+# Bugfix for ticket #725
++ Add "$wb->strip_slashes" again for backslashes are displayed in the output (view.php).
 14-June-2009 Dietrich Roland Pehlke (aldus)
 # Bugfixes for (ticket #728)
 + Add additional constant to "install/save.php" to avoid conflikts during
Index: trunk/wb/modules/news/view.php
===================================================================
--- trunk/wb/modules/news/view.php	(revision 987)
+++ trunk/wb/modules/news/view.php	(revision 988)
@@ -349,8 +349,8 @@
 		if($query_comments->numRows() > 0) {
 			while($comment = $query_comments->fetchRow()) {
 				// Display Comments without slashes, but with new-line characters
-				$comment['comment'] = nl2br(($comment['comment']));
-				$comment['title'] = ($comment['title']);
+				$comment['comment'] = nl2br($wb->strip_slashes($comment['comment']));
+				$comment['title'] = $wb->strip_slashes($comment['title']);
 				// Print comments loop
 				$commented_date = gmdate(DATE_FORMAT, $comment['commented_when']+TIMEZONE);
 				$commented_time = gmdate(TIME_FORMAT, $comment['commented_when']+TIMEZONE);
