Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2045)
+++ branches/2.8.x/CHANGELOG	(revision 2046)
@@ -11,7 +11,10 @@
 ! = Update/Change
 ===============================================================================
 
-
+19 Dec-2013 Build 2046 Manuela v.d.Decken(DarkViper)
+# little Typofixes in packet AccessFile 
+19 Dec-2013 Build 2045 Dietmar Woellbrink (Luisehahne)
+! update Access Files Classes with easier handling for modules who create their own accessfiles
 19 Dec-2013 Build 2044 Dietmar Woellbrink (Luisehahne)
 # /admin/modules/install.php:: fixed Fileupload error messages
 19 Dec-2013 Build 2043 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 2045)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2046)
@@ -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.4');
-if(!defined('REVISION')) define('REVISION', '2045');
+if(!defined('REVISION')) define('REVISION', '2046');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/AccessFileHelper.php
===================================================================
--- branches/2.8.x/wb/framework/AccessFileHelper.php	(revision 2045)
+++ branches/2.8.x/wb/framework/AccessFileHelper.php	(revision 2046)
@@ -71,7 +71,7 @@
  */
 	static public function isAccessFile($sFileName)
 	{
-		if (!is_readable($sFileName)) { throw new AccessFileInvalidFilePathException('invalid filename ['.$sFileName.']');
+		if (!is_readable($sFileName)) { throw new AccessFileInvalidFilePathException('invalid filename ['.$sFileName.']'); }
 		$bRetval = false;
 		if (($sFile = file_get_contents($sFileName)) !== false) {
 			$sPattern = '/^\s*?<\?php.*?\$i?page_?id\s*=\s*[0-9]+;.*?(?:require|include)'
@@ -80,7 +80,6 @@
 			unset($sFile);
 		}
 		return $bRetval;
-    	}
     }
 /**
  * Delete all contents of basedir, but not the basedir itself
Index: branches/2.8.x/wb/framework/AccessFile.php
===================================================================
--- branches/2.8.x/wb/framework/AccessFile.php	(revision 2045)
+++ branches/2.8.x/wb/framework/AccessFile.php	(revision 2046)
@@ -173,7 +173,7 @@
 	 * Rename an existing Accessfile
 	 * @param  string  $sNewName the new filename without path and without extension
 	 * @return boolean
-	 * @throws AccessFileAccessFileRenameException
+	 * @throws AccessFileRenameException
 	 */
 	public function rename($sNewName)
 	{
