Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 738)
+++ trunk/CHANGELOG	(revision 739)
@@ -14,7 +14,6 @@
 02-Mar-2008 Thomas Hornik
 #	added missing text in language-files
 +	added missing sorting to language dropdown in admin/pages/settings.php
--	removed include/captcha/asp.php
 01-Mar-2008 Thomas Hornik
 #	fixed ticket #562, applied changes from user tavitar with some own additions
 +	added check for AddDefaultCharset to install
Index: trunk/wb/include/captcha/asp.php
===================================================================
--- trunk/wb/include/captcha/asp.php	(nonexistent)
+++ trunk/wb/include/captcha/asp.php	(revision 739)
@@ -0,0 +1,37 @@
+<?php
+
+// $Id$
+
+/*
+
+ Website Baker Project <http://www.websitebaker.org/>
+ Copyright (C) 2004-2008, Ryan Djurovich
+
+ Website Baker is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ Website Baker is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Website Baker; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+*/
+
+// Must include code to stop this file being accessed directly
+if(!defined('WB_PATH')) { exit("Cannot access this file directly"); }
+
+if(ENABLED_ASP) {
+?>
+	<style type="text/css">
+		.nixhier { display:none; }
+	</style>
+<?php
+}
+
+?>
\ No newline at end of file

Property changes on: trunk/wb/include/captcha/asp.php
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Index: trunk/wb/account/signup_form.php
===================================================================
--- trunk/wb/account/signup_form.php	(revision 738)
+++ trunk/wb/account/signup_form.php	(revision 739)
@@ -28,6 +28,7 @@
 	exit(0);
 }
 require_once(WB_PATH.'/include/captcha/captcha.php');
+require_once(WB_PATH.'/include/captcha/asp.php');
 ?>
 
 <style>
@@ -45,7 +46,7 @@
 	<?php if(ENABLED_ASP) { // add some honeypot-fields
 	?>
 	<input type="hidden" name="submitted_when" value="<?php $t=time(); echo $t; $_SESSION['submitted_when']=$t; ?>" />
-	<p style="display:none;">
+	<p class="nixhier">
 	email-address:
 	<label for="email-address">Leave this field empty, dont enter your e-mail address:</label>
 	<input id="email-address" name="email-address" size="60" value="" /><br />
@@ -97,4 +98,4 @@
 </form>
 
 <br />
-&nbsp; 
\ No newline at end of file
+&nbsp; 
Index: trunk/wb/modules/form/view.php
===================================================================
--- trunk/wb/modules/form/view.php	(revision 738)
+++ trunk/wb/modules/form/view.php	(revision 739)
@@ -40,6 +40,7 @@
 } 
 
 require_once(WB_PATH.'/include/captcha/captcha.php');
+require_once(WB_PATH.'/include/captcha/asp.php');
 
 // Function for generating an optionsfor a select field
 if (!function_exists('make_option')) {
@@ -133,7 +134,7 @@
 if(ENABLED_ASP) { // first add some honeypot-fields
 ?>
 <input type="hidden" name="submitted_when" value="<?php $t=time(); echo $t; $_SESSION['submitted_when']=$t; ?>" />
-<p style="display:none;">
+<p class="nixhier">
 email address:
 <label for="email">Your e-mail address is not relevant Leave this field blank:</label>
 <input id="email" name="email" size="56" value="" /><br />
@@ -515,4 +516,4 @@
 	
 }
 
-?>
\ No newline at end of file
+?>
Index: trunk/wb/modules/news/comment_page.php
===================================================================
--- trunk/wb/modules/news/comment_page.php	(revision 738)
+++ trunk/wb/modules/news/comment_page.php	(revision 739)
@@ -30,6 +30,7 @@
 }
 
 require_once(WB_PATH.'/include/captcha/captcha.php');
+require_once(WB_PATH.'/include/captcha/asp.php');
 
 // Get comments page template details from db
 $query_settings = $database->query("SELECT comments_page,use_captcha,commenting FROM ".TABLE_PREFIX."mod_news_settings WHERE section_id = '".SECTION_ID."'");
@@ -46,7 +47,7 @@
 	<?php if(ENABLED_ASP) { // add some honeypot-fields
 	?>
 	<input type="hidden" name="submitted_when" value="<?php $t=time(); echo $t; $_SESSION['submitted_when']=$t; ?>" />
-	<p style="display:none;">
+	<p class="nixhier">
 	email address:
 	<label for="email">We dont want to know your email-address. Leave this field empty:</label>
 	<input id="email" name="email" size="60" value="" /><br />
