Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2134)
+++ branches/2.8.x/CHANGELOG	(revision 2135)
@@ -10,6 +10,8 @@
 # = Bugfix
 ! = Update/Change
 ===============================================================================
+01 Sep -2015 Build 2135 Manuela v.d.Decken(DarkViper)
+! class WbAdaptor: added values VarUrl/VarPath/VarRel for new var/ folder
 01 Sep -2015 Build 2134 Manuela v.d.Decken(DarkViper)
 # class msgQueue: logic error fixed in constructor
 ! class msgQueue: now trigger error when deprecated methods are called
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 2134)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2135)
@@ -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', '2134');
+if(!defined('REVISION')) define('REVISION', '2135');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/WbAdaptor.php
===================================================================
--- branches/2.8.x/wb/framework/WbAdaptor.php	(revision 2134)
+++ branches/2.8.x/wb/framework/WbAdaptor.php	(revision 2135)
@@ -34,9 +34,9 @@
  */
 class WbAdaptor {
 
-/** active instance */	
+/** active instance */
 	protected static $oInstance = null;
-/** array hold settings */	
+/** array hold settings */
 	protected $aProperties = array();
 /**  */
     protected $aObjects = array('Db' => null, 'Trans' => null, 'App' => null);
@@ -43,12 +43,12 @@
 /** vars which             */
     protected $aReservedVars = array('Db', 'Trans', 'App');
 /** constructor */
-	protected function __construct() 
+	protected function __construct()
 	{
 		$this->aProperties = array('System' => array(), 'Request' => array());
 	}
 /**
- * Get active instance 
+ * Get active instance
  * @return WbAdaptor
  */
 	public static function getInstance()
@@ -56,7 +56,7 @@
 		if(self::$oInstance == null) {
 			$c = __CLASS__;
 			self::$oInstance = new $c();
-			
+
 		}
 		return self::$oInstance;
 	}
@@ -91,8 +91,8 @@
  * @param string name of the property
  * @param mixed value to set
  * @throws InvalidArgumentException
- */	
-	public function __set($name, $value) 
+ */
+	public function __set($name, $value)
 	{
         if (array_key_exists($name, $this->aProperties['System'])) {
             throw new InvalidArgumentException('tried to set readonly or nonexisting property [ '.$name.' }!! ');
@@ -104,7 +104,7 @@
  * Get value of a variable
  * @param string name of the variable
  * @return mixed
- */	
+ */
 	public function __get($sVarname)
 	{
         if (isset($this->aObjects[$sVarname]) && !is_null($this->aObjects[$sVarname])) {
@@ -122,7 +122,7 @@
  * Check if var is set
  * @param string name of the variable
  * @return bool
- */	
+ */
 	public function __isset($sVarname)
 	{
         if (isset($this->aObjects[$sVarname]) && !is_null($this->aObjects[$sVarname])) {
@@ -134,7 +134,7 @@
 	}
 /**
  * Import WB-Constants
- */	
+ */
 	public function getWbConstants()
 	{
     // first reinitialize arrays
@@ -155,7 +155,7 @@
                     $this->aProperties['System']['Debug'] = intval($sVal);
                     $this->aProperties['System']['DebugLevel'] = intval($sVal);
                     break;
-				case 'WB_URL': 
+				case 'WB_URL':
 					$sVal = rtrim(str_replace('\\', '/', $sVal), '/').'/';
 					$sKey = 'AppUrl';
 					$this->aProperties['System'][$sKey] = $sVal;
@@ -304,6 +304,9 @@
 /* correct PageIconDir if necessary */
         $this->aProperties['Request']['PageIconDir'] = str_replace('/*/', '/'.$this->Template, $this->PageIconDir);
 
+        $this->aProperties['System']['VarPath'] = $this->aProperties['System']['AppPath'].'var/';
+        $this->aProperties['System']['VarUrl'] = $this->aProperties['System']['AppUrl'].'var/';
+        $this->aProperties['System']['VarRel'] = $this->aProperties['System']['AppRel'].'var/';
 /* cleanup arrays */
         $this->aProperties['Request'] = array_diff_key(
             $this->aProperties['Request'],
