Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1569)
+++ branches/2.8.x/CHANGELOG	(revision 1570)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 =========================== add small Features 2.8.2 ==========================
+10 Jan-2012 Build 1570 Dietmar Woellbrink (Luisehahne)
+!  added $module_directory to make quickskin directory changes dynamically
 10 Jan-2012 Build 1569 Werner v.d.Decken(DarkViper)
 # possible errors on 'save password' fixed. Minimum length of password set to 6 chars
 10 Jan-2012 Build 1568 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/include/quickSkin_alpha/wb_quickSkin_28.php
===================================================================
--- branches/2.8.x/wb/include/quickSkin_alpha/wb_quickSkin_28.php	(revision 1569)
+++ branches/2.8.x/wb/include/quickSkin_alpha/wb_quickSkin_28.php	(revision 1570)
@@ -9,11 +9,14 @@
 
 // use Debug Mode?
 $debugmode = false;
+// make directory changes more flexible
+$module_name = 'quickSkin';
+$module_directory = basename(dirname(__FILE__));
 
 $aMsg = array();
 require_once(WB_PATH.'/framework/functions.php');
 // COMPILED TEMPLATES
-$_CONFIG['quickskin_compiled'] = WB_PATH.'/temp/quickSkin/_skins_tmp/';
+$_CONFIG['quickskin_compiled'] = WB_PATH.'/temp/'.$module_name.'/_skins_tmp/';
 if(!is_dir($_CONFIG['quickskin_compiled'])) {
 	$msg = createFolderProtectFile($_CONFIG['quickskin_compiled']);
 	if(sizeof($msg)) {
@@ -23,7 +26,7 @@
 }
 
 // CACHED FILES
-$_CONFIG['quickskin_cache'] = WB_PATH.'/temp/quickSkin/_skins_cache/';
+$_CONFIG['quickskin_cache'] = WB_PATH.'/temp/'.$module_name.'/_skins_cache/';
 if(!is_dir($_CONFIG['quickskin_cache'])) {
 	$msg = createFolderProtectFile($_CONFIG['quickskin_cache']);
 	if(sizeof($msg)) {
@@ -36,7 +39,7 @@
 // EXTENTSIONS DIR
 $_CONFIG['extensions_dir'] = str_replace('\\','/', dirname(__FILE__).'/_lib/qx'); 
 
-require_once (WB_PATH.'/include/quickSkin_alpha/_lib/quickSkin_28/class.quickskin.php');
+require_once (WB_PATH.'/include/'.$module_directory.'/_lib/quickSkin_28/class.quickskin.php');
 
 
 /**
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1569)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1570)
@@ -52,5 +52,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.2');
-if(!defined('REVISION')) define('REVISION', '1569');
+if(!defined('REVISION')) define('REVISION', '1570');
 if(!defined('SP')) define('SP', 'SP2');
