Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1990)
+++ branches/2.8.x/CHANGELOG	(revision 1991)
@@ -11,6 +11,9 @@
 ! = Update/Change
 ===============================================================================
 
+21 Oct-2013 Build 1991 Manuela v.d.Decken(DarkViper)
+# /news/Reorg::deleteAll() typofix
+! ModuleReorgAbstract::__construct() set to final
 19 Oct-2013 Build 1990 Manuela v.d.Decken(DarkViper)
 + /framework/ModuleReorgAbstract  provides the basics for modul depending reorganisation classes
 ! /modules/news/Reorg  now extends ModuleReorgAbstract
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1990)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1991)
@@ -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', '1990');
+if(!defined('REVISION')) define('REVISION', '1991');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/ModuleReorgAbstract.php
===================================================================
--- branches/2.8.x/wb/framework/ModuleReorgAbstract.php	(revision 1990)
+++ branches/2.8.x/wb/framework/ModuleReorgAbstract.php	(revision 1991)
@@ -58,7 +58,7 @@
  * constructor
  * @param int $bDetailedLog  can be LOG_EXTENDED or LOG_SHORT
  */
-	public function __construct($bDetailedLog = self::LOG_SHORT) {
+	final public function __construct($bDetailedLog = self::LOG_SHORT) {
 		$this->bDetailedLog = (bool)($bDetailedLog & self::LOG_EXTENDED);
 		$this->oDb          = WbDatabase::getInstance();
 		$this->oReg         = WbAdaptor::getInstance();
Index: branches/2.8.x/wb/modules/news/Reorg.php
===================================================================
--- branches/2.8.x/wb/modules/news/Reorg.php	(revision 1990)
+++ branches/2.8.x/wb/modules/news/Reorg.php	(revision 1991)
@@ -83,7 +83,7 @@
 		$aMatches = glob($this->sAccessFilesRoot . '*'.$this->oReg->PageExtension);
 		if(is_array($aMatches))
 		{
-			foreach($aFileList as $sItem)
+			foreach($aMatches as $sItem)
 			{
 			// sanitize itempath
 				$sItem = str_replace('\\', '/', $sItem);
