Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1926)
+++ branches/2.8.x/CHANGELOG	(revision 1927)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+10 Jun-2013 Build 1927 Werner v.d.Decken(DarkViper)
+# TranslateAdaptorWbOldStyle forgotten second arg for trim added
 10 Jun-2013 Build 1926 Werner v.d.Decken(DarkViper)
 ! TranslateAdaptorWbOldStyle now also accepts modified admin directory names
 09 Jun-2013 Build 1925 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 1926)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1927)
@@ -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', '1926');
+if(!defined('REVISION')) define('REVISION', '1927');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/TranslateAdaptorWbOldStyle.php
===================================================================
--- branches/2.8.x/wb/framework/TranslateAdaptorWbOldStyle.php	(revision 1926)
+++ branches/2.8.x/wb/framework/TranslateAdaptorWbOldStyle.php	(revision 1927)
@@ -44,7 +44,6 @@
 	public function __construct($sAddon = '')
 	{
 		$this->sAddon = $sAddon;
-		$this->sFilePath = str_replace('\\', '/', dirname(dirname(__FILE__)).'/'.$sAddon);
 	}
 /**
  * Load languagefile
@@ -103,7 +102,7 @@
 		$this->sFilePath = $sDirname.$sAddon.'/languages/';
 		if(!is_readable($this->sFilePath) && (strpos('admin', $this->sAddon) === 0)) {
 		// correct modified admin directory
-			$sTmp = trim(WbAdaptor::getInstance()->AcpDir);
+			$sTmp = trim(WbAdaptor::getInstance()->AcpDir, '/');
 			$this->sFilePath = $sDirname.preg_replace('/^admin/', $sTmp, $sAddon).'/languages/';
 			if(!is_readable($this->sFilePath)) {
 				throw new TranslationException('missing language definitions in: '.$sAddon.'/languages');
