Index: trunk/wb/include/captcha/captchas/text.php
===================================================================
--- trunk/wb/include/captcha/captchas/text.php	(revision 627)
+++ trunk/wb/include/captcha/captchas/text.php	(revision 628)
@@ -26,6 +26,7 @@
 // Must include code to stop this file being accessed directly
 if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
 
+global $admin;
 $name = 'text';
 $file = WB_PATH."/temp/.captcha_$name.txt";
 
@@ -44,6 +45,7 @@
 while($s = current($content)) {
 	// get question
 	$s=trim(rtrim(rtrim($s,"\n"),"\r")); // remove newline
+	$s=$admin->strip_slashes($s);
 	if($s=='' OR $s{0}!='?') {
 		next($content);
 		continue;
@@ -58,6 +60,7 @@
 	// get answer
 	$s=next($content);
 	$s=trim(rtrim(rtrim($s,"\n"),"\r")); // remove newline
+	$s=$admin->strip_slashes($s);
 	if(isset($s{0}) && $s{0}!='!') continue;
 	$a=substr($s,1);
 	$qa[$lang][$q]=$a;
@@ -87,4 +90,4 @@
 
 echo $k;
 
-?>
+?>
\ No newline at end of file
Index: trunk/wb/modules/captcha_control/tool.php
===================================================================
--- trunk/wb/modules/captcha_control/tool.php	(revision 627)
+++ trunk/wb/modules/captcha_control/tool.php	(revision 628)
@@ -53,10 +53,13 @@
 
 	// save text-captchas
 	if($_POST['captcha_type'] == 'text') {
-		$text_qa=$admin->add_slashes($_POST['text_qa']);
-		if($fh = fopen(WB_PATH.'/temp/.captcha_text.txt', 'wb')) {
-			fwrite($fh, $text_qa);
-			fclose($fh);
+		$text_qa=$_POST['text_qa'];
+		if(strpos($text_qa, '### example ###') === FALSE) {
+			$text_qa=$admin->add_slashes($text_qa);
+			if($fh = fopen(WB_PATH.'/temp/.captcha_text.txt', 'wb')) {
+				fwrite($fh, $text_qa);
+				fclose($fh);
+			}
 		}
 	}
 	
@@ -82,6 +85,8 @@
 			}
 		}
 	}
+	if($text_qa == '')
+		$text_qa = $MOD_CAPTCHA_CONTROL['CAPTCHA_TEXT_DESC'];
 
 // script to load image
 ?>
Index: trunk/wb/modules/captcha_control/languages/EN.php
===================================================================
--- trunk/wb/modules/captcha_control/languages/EN.php	(revision 627)
+++ trunk/wb/modules/captcha_control/languages/EN.php	(revision 628)
@@ -47,6 +47,7 @@
 $MOD_CAPTCHA_CONTROL['OLD_IMAGE']         = 'Old style (not recommended)';
 $MOD_CAPTCHA_CONTROL['TEXT']              = 'Text-CAPTCHA';
 $MOD_CAPTCHA_CONTROL['CAPTCHA_ENTER_TEXT']= 'Questions and Answers';
+$MOD_CAPTCHA_CONTROL['CAPTCHA_TEXT_DESC'] = "Delete this all to add your own entries\nor your changes won't be saved!\n### example ###\nHere you can enter Questions and Answers.\nUse:\n?What's <b>Claudia</b> Schiffer's <b>first name</b>?\n!Claudia\n\n?Question 2\n!Answer 2\n...\nif language doesn't matter.\n\nOr, if language do matter, use:\n?EN:What's <b>Claudia</b> Schiffer's <b>first name</b>?\n!Claudia\n\n?EN:Question 2\n!Answer 2\n\n?DE:Wie ist der <b>Vorname</b> von <b>Claudia</b> Schiffer?\n!Claudia\n...\n### example ###\n";
 
 $MOD_CAPTCHA['VERIFICATION']           = 'Verification';
 $MOD_CAPTCHA['ADDITION']               = 'add';
Index: trunk/wb/modules/captcha_control/languages/DE.php
===================================================================
--- trunk/wb/modules/captcha_control/languages/DE.php	(revision 627)
+++ trunk/wb/modules/captcha_control/languages/DE.php	(revision 628)
@@ -50,6 +50,7 @@
 $MOD_CAPTCHA_CONTROL['OLD_IMAGE']         = 'Alter Stil (nicht empfohlen)';
 $MOD_CAPTCHA_CONTROL['TEXT']              = 'Text-CAPTCHA';
 $MOD_CAPTCHA_CONTROL['CAPTCHA_ENTER_TEXT']= 'Fragen und Antworten';
+$MOD_CAPTCHA_CONTROL['CAPTCHA_TEXT_DESC'] = "Bitte hier alles l&ouml;schen\nsonst werden Ihre &Auml;nderungen nicht gespeichert!\n### Beispiel ###\nHier k&ouml;nnen sie Fragen und Antworten eingeben.\nEntweder:\n?Wie ist der <b>Vorname</b> von <b>Claudia</b> Schiffer?\n!Claudia\n\n?Frage 2\n!Antwort 2\n...\nwenn die Benutzte Sprache egal ist.\n\nOder, wenn die Sprache relevant ist:\n?EN:What's <b>Claudia</b> Schiffer's <b>first name</b>?\n!Claudia\n\n?EN:Question 2\n!Answer 2\n\n?DE:Wie ist der <b>Vorname</b> von <b>Claudia</b> Schiffer?\n!Claudia\n...\n### example ###\n";
 
 $MOD_CAPTCHA['VERIFICATION']           = 'Pr&uuml;fziffer';
 $MOD_CAPTCHA['ADDITION']               = 'plus';
