Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1980)
+++ branches/2.8.x/CHANGELOG	(revision 1981)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+10 Oct-2013 Build 1981 Dietmar Woellbrink (Luisehahne)
+# Argument that is passed to the constructor of the Access File Class has been corrected
 10 Oct-2013 Build 1980 Dietmar Woellbrink (Luisehahne)
 ! /framework/initialize.php::SetInstallPathConstants() setting of DOCUMENT_ROOT now compatible for windows installation
 ! /framework/functions.php::rebuild_all_accessfiles() Optimize rebuild access file coding
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1980)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1981)
@@ -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.3');
-if(!defined('REVISION')) define('REVISION', '1980');
+if(!defined('REVISION')) define('REVISION', '1981');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/functions.php
===================================================================
--- branches/2.8.x/wb/framework/functions.php	(revision 1980)
+++ branches/2.8.x/wb/framework/functions.php	(revision 1981)
@@ -1503,7 +1503,7 @@
 				      . 'WHERE `page_id`='.$aPageRecord['page_id'];
 				$oDb->query($sql);
 		// --- end reorg tree structure --------------------------------------------------
-                $sFilename = $oReg->AppPath.$oReg->PagesDir.$aPageRecord['link'].$oReg->PageExtension;
+                $sFilename = $oReg->AppPath.$oReg->PagesDir.ltrim($aPageRecord['link'],'/').$oReg->PageExtension;
 				$oAccessFile = new AccessFile($sFilename, $aPageRecord['page_id']);
 				$oAccessFile->write();
 				unset($oAccessFile);
