Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1488)
+++ branches/2.8.x/CHANGELOG	(revision 1489)
@@ -12,6 +12,8 @@
 
 =============================== FEATURES FREEZE ================================
 ----------------------------------- Fixes 2.8.2 --------------------------------
+11 Aug-2011 Build 1489 Werner v.d.Decken(DarkViper)
++ little fix in globalExceptionHandler
 11 Aug-2011 Build 1488 Werner v.d.Decken(DarkViper)
 + globalExceptionHandler activated
 10 Aug-2011 Build 1487 Werner v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1488)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1489)
@@ -52,4 +52,4 @@
 
 // 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.2');
-if(!defined('REVISION')) define('REVISION', '1488');
+if(!defined('REVISION')) define('REVISION', '1489');
Index: branches/2.8.x/wb/framework/globalExceptionHandler.php
===================================================================
--- branches/2.8.x/wb/framework/globalExceptionHandler.php	(revision 1488)
+++ branches/2.8.x/wb/framework/globalExceptionHandler.php	(revision 1489)
@@ -23,7 +23,7 @@
 	class IllegalFileException extends LogicException {
 
 		public function __toString() {
-			$file = str_replace(dirname(dirname(__FILE__)), '', $e->getFile());
+			$file = str_replace(dirname(dirname(__FILE__)), '', $this->getFile());
 			$out  = '<div style="color: #ff0000; text-align: center;"><br /><br /><br /><h1>Illegale file access</h1>';
 			$out .= '<h2>'.$file.'</h2></div>';
 			return $out;
