Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 1065)
+++ trunk/CHANGELOG	(revision 1066)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.0 -------------------------------------
+15-July 2009 Matthias Gallas
+!	changed in class_login.php mktime() to time()
 14-July 2009 Matthias Gallas
 #	Fixed bug with sections are only editable in new backend-themes if blocks are enabled
 	(Thanks to Luisehahne)
Index: trunk/wb/framework/class.login.php
===================================================================
--- trunk/wb/framework/class.login.php	(revision 1065)
+++ trunk/wb/framework/class.login.php	(revision 1066)
@@ -258,7 +258,7 @@
 			}	
 
 			// Update the users table with current ip and timestamp
-			$get_ts = mktime();
+			$get_ts = time();
 			$get_ip = $_SERVER['REMOTE_ADDR'];
 			$query = "UPDATE ".$this->USERS_TABLE." SET login_when = '$get_ts', login_ip = '$get_ip' WHERE user_id = '$user_id'";
 			$database->query($query);
