Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2051)
+++ branches/2.8.x/CHANGELOG	(revision 2052)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+29 Dec-2013 Build 2052 Manuela v.d.Decken(DarkViper)
+# account/forgot_form : fixed fix...
 29 Dec-2013 Build 2051 Manuela v.d.Decken(DarkViper)
 # account/preferences_form : language selection fixed
 # account/forgot_form : password generation fixed
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 2051)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2052)
@@ -51,5 +51,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.4');
-if(!defined('REVISION')) define('REVISION', '2051');
+if(!defined('REVISION')) define('REVISION', '2052');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/account/forgot_form.php
===================================================================
--- branches/2.8.x/wb/account/forgot_form.php	(revision 2051)
+++ branches/2.8.x/wb/account/forgot_form.php	(revision 2052)
@@ -42,9 +42,9 @@
     		$email = '';
     	} else {
         // Check if the email exists in the database
-        	$sql  = 'SELECT `user_id`,`username`,`display_name`,`email`,`last_reset`,`password` '.
-        	        'FROM `'.TABLE_PREFIX.'users` '.
-        	        'WHERE `email`=\''.$wb->add_slashes($email).'\'';
+        	$sql  = 'SELECT `user_id`,`username`,`display_name`,`email`,`last_reset`,`password` '
+        	      . 'FROM `'.TABLE_PREFIX.'users` '
+        	      . 'WHERE `email`=\''.$wb->add_slashes($email).'\'';
 
         	if(($results = $database->query($sql)))
         	{
@@ -59,10 +59,10 @@
         				$old_pass = $results_array['password'];
         			// Generate a random password then update the database with it
         				$new_pass = $pwh->createNew();
-        				$sql = 'UPDATE `'.TABLE_PREFIX.'users` '.
-        				       'SET `password`=\''.md5($new_pass);
-        				           '`last_reset`='.time().' '.
-        				       'WHERE `user_id`='.(int)$results_array['user_id'];
+        				$sql = 'UPDATE `'.TABLE_PREFIX.'users` '
+        				     . 'SET `password`=\''.md5($new_pass).'\', '
+        				     .     '`last_reset`='.time().' '
+        				     . 'WHERE `user_id`='.(int)$results_array['user_id'];
         				unset($pwh); // destroy $pwh-Object
         				if($database->query($sql))
         				{ // Setup email to send
