Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1546)
+++ branches/2.8.x/CHANGELOG	(revision 1547)
@@ -12,6 +12,8 @@
 
 =========================== add small Features 2.8.2 ==========================
 18 Dez-2011 Build 1546 Dietmar Woellbrink (Luisehahne)
++ forgot a file in quickSkin Folder
+18 Dez-2011 Build 1546 Dietmar Woellbrink (Luisehahne)
 ! recoded /account/forgot_form.php
 ! update quickSkin 
 ! update languages files 
Index: branches/2.8.x/wb/include/quickSkin/wb_quickSkin_28.php
===================================================================
--- branches/2.8.x/wb/include/quickSkin/wb_quickSkin_28.php	(nonexistent)
+++ branches/2.8.x/wb/include/quickSkin/wb_quickSkin_28.php	(revision 1547)
@@ -0,0 +1,97 @@
+<?php
+/* -------------------------------------------------------- */
+if(defined('WB_PATH') == false)
+{
+	// Stop this file being access directly
+		die('<head><title>Access denied</title></head><body><h2 style="color:red;margin:3em auto;text-align:center;">Cannot access this file directly</h2></body></html>');
+}
+/* -------------------------------------------------------- */
+
+// use Debug Mode?
+$debugmode = false; 
+
+// COMPILED TEMPLATES
+$_CONFIG['quickskin_compiled'] = WB_PATH.'/temp/quickSkin/_skins_tmp/';
+
+// CACHED FILES
+$_CONFIG['quickskin_cache'] = WB_PATH.'/temp/quickSkin/_skins_cache/';
+$_CONFIG['cache_lifetime'] = 600;
+
+// EXTENTSIONS DIR
+$_CONFIG['extensions_dir'] = str_replace('\\','/', dirname(__FILE__).'/_lib/qx/'); 
+
+require_once (WB_PATH.'/include/quickSkin/_lib/quickSkin_28/class.quickskin.php');
+
+
+/**
+	SET UP COMPRESSION 
+*/
+if ( ini_get( 'zlib.output_compression' )  && ini_get( 'zlib.output_compression_level' ) != 5 ) {
+  ini_set( 'zlib.output_compression_level', '5' );
+  ob_start();
+}
+/**
+ * use_common_placeholders
+ * 
+ * This function is for QuickSkins internal use.
+ * It will replace common placeholders to ease the work 
+ * and the creation of modules and its templates
+ * This function is called in the class.quickskin.php
+ *
+ */
+
+/**
+ * use_common_placeholders
+ * 
+ * This function is for QuickSkins internal use.
+ * It will replace common placeholders to ease the work 
+ * and the creation of modules and its templates
+ * This function is called in the class.quickskin.php
+ *
+ */
+
+function use_common_placeholders($text) {
+
+	/**
+		This function makes possible to use the following PLACEHOLDERS within your modules.
+		Works good in PAGE Type and ADMIN TOOL Type modules.
+		As of date 12-18-2011, SNIPPET Type Modules weren't tested
+		[MODULE_NAME]
+		[MODULE_URL]
+
+		[WB_URL]
+		[ADMIN_URL]
+		[THEME_URL]
+		[MEDIA_DIRECTORY]
+			
+		[TEMPLATE_DIR]
+		[TEMPLATE_NAME]
+		[TEMPLATE]
+
+	*/
+	switch (TRUE){
+		case isset($GLOBALS['tool']): $MOD_NAME = $GLOBALS['tool']; break;  // AdminTool
+		case isset($GLOBALS['section']['module']): $MOD_NAME = $GLOBALS['section']['module']; break;  // PageType Module
+		case isset($GLOBALS['module_dir']): $MOD_NAME = $GLOBALS['module_dir']; break;  // SnippetType Module
+		default: $MOD_NAME = FALSE;
+	
+	}
+	
+	if(isset($MOD_NAME)) {
+		$text = str_replace('[MODULE_NAME]', $MOD_NAME, $text);
+		$text = str_replace('[MODULE_URL]', WB_URL.'/modules/'.$MOD_NAME, $text);
+	}	
+	
+	// WB CONSTANTS (frontend only)
+	if(defined('TEMPLATE_DIR'))	 $text = str_replace('[TEMPLATE_DIR]', TEMPLATE_DIR, $text);
+	if(defined('TEMPLATE_NAME')) $text = str_replace('[TEMPLATE_NAME]', TEMPLATE_NAME, $text);
+	if(defined('TEMPLATE'))	     $text = str_replace('[TEMPLATE]', TEMPLATE, $text);	
+	
+	// WB CONSTANTS (always accessible) 
+	$text = str_replace('[WB_URL]', WB_URL, $text);	
+	$text = str_replace('[ADMIN_URL]', ADMIN_URL, $text);
+	$text = str_replace('[MEDIA_DIRECTORY]', MEDIA_DIRECTORY, $text);
+	$text = str_replace('[THEME_URL]', THEME_URL, $text);
+		
+	return $text;
+}
\ No newline at end of file

Property changes on: branches/2.8.x/wb/include/quickSkin/wb_quickSkin_28.php
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision HeadURL
\ No newline at end of property
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1546)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1547)
@@ -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', '1546');
+if(!defined('REVISION')) define('REVISION', '1547');
 if(!defined('SP')) define('SP', 'SP2');
