Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 234)
+++ trunk/CHANGELOG	(revision 235)
@@ -11,6 +11,12 @@
 ! = Update/Change
 
 ------------------------------------- 2.6.0 -------------------------------------
+20-Nov-2005 Ryan Djurovich
+!	News mod now hides read more link if no need for it (see ticket #56)
++	Added support for mailto: links in the menu link mod
+#	Added direct-access redirection on some files (see ticket #37)
++	Added extra characters to convert.php (see ticket #64)
+#	Fixed ticket #65 (last_reset check in account/forgot_form.php)
 29-Sep-2005 Ryan Djurovich
 !	Cleaned up form buttons in Settings
 !	Moved some options into Advanced Settings
Index: trunk/wb/languages/EN.php
===================================================================
--- trunk/wb/languages/EN.php	(revision 234)
+++ trunk/wb/languages/EN.php	(revision 235)
@@ -388,6 +388,7 @@
 $TEXT['RESTORE_MEDIA'] = 'Restore Media';
 $TEXT['ADMINISTRATION_TOOL'] = 'Administration tool';
 $TEXT['CAPTCHA_VERIFICATION'] = 'Captcha Verification';
+$TEXT['VERIFICATION'] = 'Verification';
 
 
 // Success/error messages
Index: trunk/wb/modules/form/view.php
===================================================================
--- trunk/wb/modules/form/view.php	(revision 234)
+++ trunk/wb/modules/form/view.php	(revision 235)
@@ -190,7 +190,7 @@
 	for($i = 0; $i < 5; $i++) {
 		$_SESSION['captcha'] .= rand(0,9);
 	}
-	?><tr><td class="field_title">Verification:</td><td>
+	?><tr><td class="field_title"><?php echo $TEXT['VERIFICATION']; ?>:</td><td>
 	<table cellpadding="2" cellspacing="0" border="0">
 	<tr><td><img src="<?php echo WB_URL; ?>/include/captcha.php" alt="Captcha" /></td>
 	<td><input type="text" name="captcha" maxlength="5" /></td>
@@ -313,9 +313,9 @@
 			// Now send the email
 			if($email_to != '') {
 				if($email_from != '') {
-					if(mail($email_to,$email_subject,str_replace('\n', '', $email_body),"From: ".$email_from)) { $success = true; }
+					if(mail($email_to,$email_subject,str_replace("\n", '', $email_body),"From: ".$email_from)) { $success = true; }
 				} else {
-					if(mail($email_to,$email_subject,str_replace('\n', '', $email_body))) { $success = true; }
+					if(mail($email_to,$email_subject,str_replace("\n", '', $email_body))) { $success = true; }
 				}
 			}				
 			// Write submission to database
Index: trunk/wb/config.php
===================================================================
--- trunk/wb/config.php	(revision 234)
+++ trunk/wb/config.php	(revision 235)
@@ -1,17 +1 @@
-<?php
-
-define('DB_TYPE', 'mysql');
-define('DB_HOST', 'localhost');
-define('DB_USERNAME', 'root');
-define('DB_PASSWORD', 'password');
-define('DB_NAME', 'wb');
-define('TABLE_PREFIX', '');
-
-define('WB_PATH', dirname(__FILE__));
-define('WB_URL', 'http://localhost/workspace/websitebaker2/wb');
-define('ADMIN_PATH', WB_PATH.'/admin');
-define('ADMIN_URL', 'http://localhost/workspace/websitebaker2/wb/admin');
-
-require_once(WB_PATH.'/framework/initialize.php');
-
-?>
\ No newline at end of file
+<?php ?>
\ No newline at end of file
