Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1477)
+++ branches/2.8.x/CHANGELOG	(revision 1478)
@@ -11,7 +11,10 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.2 ------------------------------------
-19 Jul-2011 Build 1477 Dietmar Woellbrink (Luisehahne)
+22 Jul-2011 Build 1477 Dietmar Woellbrink (Luisehahne)
+# fix mssing filename in intro.php
+! inactive user in dropwonlist are show with line-through
+21 Jul-2011 Build 1477 Dietmar Woellbrink (Luisehahne)
 ! update DA language (Tks to Achrist)
 ! update some languages variables (Tks to Rübenwurzel, Testör)
 ! move function url_encode from admin/pages to framework/functions.php 
Index: branches/2.8.x/wb/admin/pages/intro.php
===================================================================
--- branches/2.8.x/wb/admin/pages/intro.php	(revision 1477)
+++ branches/2.8.x/wb/admin/pages/intro.php	(revision 1478)
@@ -21,6 +21,7 @@
 require_once(WB_PATH.'/framework/class.admin.php');
 $admin = new admin('Pages', 'pages_intro');
 $content = '';
+$filename = WB_PATH.PAGES_DIRECTORY.'/intro'.PAGE_EXTENSION;
 if(file_exists($filename) && filesize($filename) > 0) {
 $content = file_get_contents( $filename ) ;
 }
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1477)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1478)
@@ -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.RC7');
-if(!defined('REVISION')) define('REVISION', '1477');
+if(!defined('REVISION')) define('REVISION', '1478');
Index: branches/2.8.x/wb/admin/users/index.php
===================================================================
--- branches/2.8.x/wb/admin/users/index.php	(revision 1477)
+++ branches/2.8.x/wb/admin/users/index.php	(revision 1478)
@@ -45,7 +45,8 @@
 	$template->parse('list', 'list_block', true);
 	// Loop through users
 	while($user = $results->fetchRow()) {
-		$template->set_var('VALUE',$admin->getIDKEY($user['user_id'])); 
+		$template->set_var('VALUE',$admin->getIDKEY($user['user_id']));
+		$template->set_var('STATUS', ($user['active']==false ? 'text-decoration:line-through' : 'text-decoration :none;') );
 		$template->set_var('NAME', $user['display_name'].' ('.$user['username'].')');
 		$template->parse('list', 'list_block', true);
 	}
Index: branches/2.8.x/wb/templates/wb_theme/templates/users.htt
===================================================================
--- branches/2.8.x/wb/templates/wb_theme/templates/users.htt	(revision 1477)
+++ branches/2.8.x/wb/templates/wb_theme/templates/users.htt	(revision 1478)
@@ -21,7 +21,7 @@
 
 <select name="user_id" style="width: 500px;">
 <!-- BEGIN list_block -->
-	<option value="{VALUE}">{NAME}</option>
+	<option value="{VALUE}" style="{STATUS}">{NAME}</option>
 <!-- END list_block -->
 </select>
 
Index: branches/2.8.x/wb/templates/argos_theme/templates/users.htt
===================================================================
--- branches/2.8.x/wb/templates/argos_theme/templates/users.htt	(revision 1477)
+++ branches/2.8.x/wb/templates/argos_theme/templates/users.htt	(revision 1478)
@@ -17,7 +17,7 @@
 
 <select name="user_id" style="width: 500px;">
 <!-- BEGIN list_block -->
-	<option value="{VALUE}">{NAME}</option>
+	<option value="{VALUE}" style="{STATUS}">{NAME}</option>
 <!-- END list_block -->
 </select>
 
