Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 319)
+++ trunk/CHANGELOG	(revision 320)
@@ -12,9 +12,9 @@
 
 ------------------------------------- 2.6.3 -------------------------------------
 01-Mar-2006 Stefan Braunewell
+#	Fixed ticket #68 - Safari problem with displaying all parents.
 #	Fixed ticket #136 - mailing forgotten password in admin login screen leads 
 	to fatal error.
-+	Added support for tag [MEMORY_USAGE] in page footer.
 !	Renamed tag [PROCESSTIME] to [PROCESS_TIME]
 ------------------------------------- 2.6.2 -------------------------------------
 03-Feb-2006 Stefan Braunewell (very big special thanks to John and Alex)
Index: trunk/wb/framework/frontend.functions.php
===================================================================
--- trunk/wb/framework/frontend.functions.php	(revision 319)
+++ trunk/wb/framework/frontend.functions.php	(revision 320)
@@ -249,10 +249,10 @@
 // Function for page footer
 if (!function_exists('page_footer')) {
 	function page_footer($date_format = 'Y') {
-		global $starttime,$startmemory;
-		$vars = array('[YEAR]', '[PROCESS_TIME]', '[MEMORY_USAGE]');
+		global $starttime;
+		$vars = array('[YEAR]', '[PROCESS_TIME]');
 		$processtime=array_sum(explode(" ",microtime()))-$starttime;
-		$values = array(date($date_format),$processtime,memory_get_usage()-$startmemory);
+		$values = array(date($date_format),$processtime);
 		echo str_replace($vars, $values, WEBSITE_FOOTER);
 	}
 }
Index: trunk/wb/index.php
===================================================================
--- trunk/wb/index.php	(revision 319)
+++ trunk/wb/index.php	(revision 320)
@@ -24,7 +24,6 @@
 */
 
 $starttime = array_sum(explode(" ",microtime()));
-$startmemory = memory_get_usage();
 
 // Include config file
 require_once(dirname(__FILE__).'/config.php');
