Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 1087)
+++ trunk/CHANGELOG	(revision 1088)
@@ -12,6 +12,7 @@
 
 ------------------------------------- 2.8.0 -------------------------------------
 22-July 2009 Matthias Gallas
+#	Fixed E_ALL&E_STRICT warning on PHP5 servers (Thanks to Aldus) 
 #	Fixed bug with home folders are viewable and writable from other users
 	(ticket #605 and #748) (Thanks to Aldus)
 20-July 2009 Matthias Gallas
Index: trunk/wb/account/preferences.php
===================================================================
--- trunk/wb/account/preferences.php	(revision 1087)
+++ trunk/wb/account/preferences.php	(revision 1088)
@@ -36,7 +36,8 @@
 }
 
 require_once(WB_PATH.'/framework/class.wb.php');
-if (wb::is_authenticated()==false) {
+$wb_inst = new wb();
+if ($wb_inst->is_authenticated()==false) {
 	header('Location: '.WB_URL.'/account/login.php');
 	exit(0);
 }
