Index: branches/main/admin/interface/version.php
===================================================================
--- branches/main/admin/interface/version.php	(revision 7)
+++ branches/main/admin/interface/version.php	(revision 8)
@@ -48,6 +48,6 @@
 
 // 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.10.1-dev'); }
-if(!defined('REVISION')) { define('REVISION', '7'); }
+if(!defined('REVISION')) { define('REVISION', '8'); }
 if(!defined('SP')) { define('SP', ''); }
 
Index: branches/main/framework/Autoloader.php
===================================================================
--- branches/main/framework/Autoloader.php	(revision 7)
+++ branches/main/framework/Autoloader.php	(revision 8)
@@ -20,7 +20,7 @@
 /**
  * Description of Autoloader
  *
- * @package      Installer
+ * @package      Core
  * @copyright    Manuela v.d.Decken <manuela@isteam.de>
  * @author       Manuela v.d.Decken <manuela@isteam.de>
  * @license      GNU General Public License 3.0
@@ -54,34 +54,34 @@
     {
         $aMatches = \preg_split('=[\\\\/]=', $sClassName, null, \PREG_SPLIT_NO_EMPTY);
         // insert default NS if no one is given
-        if (sizeof($aMatches) == 1) { array_unshift($aMatches, 'framework'); }
+        if (\sizeof($aMatches) == 1) { \array_unshift($aMatches, 'framework'); }
         // translate namespaces into real dir entries
-        $aMatches[0] = str_replace(array_keys(self::$aTransNs), self::$aTransNs, $aMatches[0]);
+        $aMatches[0] = \str_replace(\array_keys(self::$aTransNs), self::$aTransNs, $aMatches[0]);
         // first seek in namespace
         $sFilePath = self::$sInstallPath.\implode('/', $aMatches).'.php';
-        if (is_readable($sFilePath)) {
+        if (\is_readable($sFilePath)) {
             include $sFilePath;
         } else {
             // second seek in namespace with file prefix 'class.'
-            $sTmp = array_pop($aMatches);
+            $sTmp = \array_pop($aMatches);
             $sFilePath = self::$sInstallPath.\implode('/', $aMatches).'/class.'.$sTmp.'.php';
-            array_push($aMatches, $sTmp);
-            if (is_readable($sFilePath)) {
+            \array_push($aMatches, $sTmp);
+            if (\is_readable($sFilePath)) {
                 include $sFilePath;
             }
         }
     }
 /**
- * register his autoloader
+ * register this autoloader
  */
     public static function doRegister()
     {
-        self::$sInstallPath = rtrim(str_replace('\\', '/', dirname(__DIR__)), '/').'/';
+        self::$sInstallPath = \rtrim(\str_replace('\\', '/', \dirname(__DIR__)), '/').'/';
         \spl_autoload_register([self, 'autoLoad']);
     }
 
 /**
- * unregister his autoloader
+ * unregister this autoloader
  */
     public static function unRegister()
     {
