Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1880)
+++ branches/2.8.x/CHANGELOG	(revision 1881)
@@ -12,6 +12,9 @@
 ===============================================================================
 
 
+05 Mar-2013 Build 1881 Dietmar Woellbrink (Luisehahne)
+# bugfix setting slash in class m_news_Reorg ( access files in root)
+! upgrade-script shows count of created module access files
 05 Mar-2013 Build 1880 Dietmar Woellbrink (Luisehahne)
 # bugfix missing slash in class m_news_Reorg
 05 Mar-2013 Build 1879 Werner v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/upgrade-script.php
===================================================================
--- branches/2.8.x/wb/upgrade-script.php	(revision 1880)
+++ branches/2.8.x/wb/upgrade-script.php	(revision 1881)
@@ -1045,7 +1045,7 @@
 				echo '<h4>'.'Create/Reorg Accesfiles for module \''.$sModul.'\' version '.$sModulVersion.'</h4>';
 				$oReorg = new $sModulReorg();
 				$aReturnMsg = $oReorg->execute(); // show details
-				if($bDebugModus && is_array($aReturnMsg)) {
+				if(is_array($aReturnMsg)) {
 					foreach($aReturnMsg as $title) {
 					echo '<strong>'.$title.'</strong><br />';
 					}
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1880)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1881)
@@ -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', '1880');
+if(!defined('REVISION')) define('REVISION', '1881');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/modules/news/Reorg.php
===================================================================
--- branches/2.8.x/wb/modules/news/Reorg.php	(revision 1880)
+++ branches/2.8.x/wb/modules/news/Reorg.php	(revision 1881)
@@ -48,7 +48,7 @@
 		if(class_exists('WbAdaptor')) {
 			$this->_oReg = WbAdaptor::getInstance();
 			$sTmp = trim($this->_oReg->PagesDir, '/');
-			$sTmp = ($sTmp == '' ? '' : $sTmp);
+			$sTmp = ($sTmp == '' ? '' : $sTmp.'/');
 			$this->_sPagesDir = $sTmp;
 			$sOutput = $this->createAccessFiles();
 		}
@@ -70,7 +70,7 @@
 			while($aPost = $oPosts->fetchRow(MYSQL_ASSOC))
 			{
 				$sAccessFile = $this->_oReg->AppPath.$this->_sPagesDir
-				               . rtrim(str_replace('\\', '/', $aPost['link']), '/')
+				               . trim(str_replace('\\', '/', $aPost['link']), '/')
 				               . $this->_oReg->PageExtension;
 				$aOptionalCommand = array(
 					'$section_id   = '.$aPost['section_id'].';',
