Index: trunk/wb/admin/pages/intro2.php
===================================================================
--- trunk/wb/admin/pages/intro2.php	(revision 221)
+++ trunk/wb/admin/pages/intro2.php	(revision 222)
@@ -27,7 +27,7 @@
 if(!isset($_POST['content'])) {
 	header("Location: intro.php");
 } else {
-	$content = htmlspecialchars($_POST['content']);
+	$content = $_POST['content'];
 }
 
 // Create new admin object
@@ -35,6 +35,8 @@
 require_once(WB_PATH.'/framework/class.admin.php');
 $admin = new admin('Pages', 'pages_intro');
 
+$content=htmlspecialchars($admin->strip_slashes($content));
+
 // Include the WB functions file
 require_once(WB_PATH.'/framework/functions.php');
 
