Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1877)
+++ branches/2.8.x/CHANGELOG	(revision 1878)
@@ -11,9 +11,11 @@
 ! = Update/Change
 ===============================================================================
 
-02 Mae-2013 Build 1877 Dietmar Woellbrink (Luisehahne)
+05 Mar-2013 Build 1878 Werner v.d.Decken(DarkViper)
+# fixed PagesDir in WbAdaptor
+02 Mar-2013 Build 1877 Dietmar Woellbrink (Luisehahne)
 ! fix news reorg.php to be backward compatible slash settings  
-01 Mae-2013 Build 1876 Dietmar Woellbrink (Luisehahne)
+01 Mar-2013 Build 1876 Dietmar Woellbrink (Luisehahne)
 ! wysgwyg, first try to repair missing table entries
 ! page sections typofix in header
 28 Feb-2013 Build 1875 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1877)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1878)
@@ -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', '1877');
+if(!defined('REVISION')) define('REVISION', '1878');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/WbAdaptor.php
===================================================================
--- branches/2.8.x/wb/framework/WbAdaptor.php	(revision 1877)
+++ branches/2.8.x/wb/framework/WbAdaptor.php	(revision 1878)
@@ -158,6 +158,7 @@
 					break;
 				case 'PAGES_DIRECTORY':
 					$sVal = trim(str_replace('\\', '/', $sVal), '/').'/';
+					$sVal = $sVal=='/' ? '' : $sVal;
 					$sKey = 'PagesDir';
 					$this->_aSys['System'][$sKey] = $sVal; 
 					break;
