Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 1060)
+++ trunk/CHANGELOG	(revision 1061)
@@ -11,6 +11,9 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.0 -------------------------------------
+14-July 2009 Dietrich Roland Pehlke
+!	changes in frontend.functions.php, line 323: 'date' to 'gmdate' to avoid E_STRICT warnings.
+!	changes in wb-setup.php, line 50: 'date' to 'gmdate' to avoid E_STRICT warnings. See also #741.
 13-July 2009 Matthias Gallas
 +	added changes from news/add.php to the upgrade-script.php
 13-July-2009 Ruud Eisinga
Index: trunk/wb/include/jscalendar/wb-setup.php
===================================================================
--- trunk/wb/include/jscalendar/wb-setup.php	(revision 1060)
+++ trunk/wb/include/jscalendar/wb-setup.php	(revision 1061)
@@ -47,7 +47,7 @@
 		$jscal_lang = 'en';
 	}
 	// today
-	$jscal_today = date('Y/m/d');
+	$jscal_today = gmdate('Y/m/d');
 	// first-day-of-week
 	$jscal_firstday = '1'; // monday
 	if(LANGUAGE=='EN')
Index: trunk/wb/framework/frontend.functions.php
===================================================================
--- trunk/wb/framework/frontend.functions.php	(revision 1060)
+++ trunk/wb/framework/frontend.functions.php	(revision 1061)
@@ -320,7 +320,7 @@
 		global $starttime;
 		$vars = array('[YEAR]', '[PROCESS_TIME]');
 		$processtime=array_sum(explode(" ",microtime()))-$starttime;
-		$values = array(date($date_format),$processtime);
+		$values = array(gmdate($date_format),$processtime);
 		echo str_replace($vars, $values, WEBSITE_FOOTER);
 	}
 }
