Project

General

Profile

« Previous | Next » 

Revision 1484

Added by Luisehahne over 13 years ago

move fixes 2.8.2 to 2.8.3
fixes will be shown in an extra readme
an package with the fixed files will be created
for all users who downloaded the 2.8.2 before 29 Jul-2011

View differences:

index.php
30 30

  
31 31
// Get existing value from database
32 32
// $database = new database();
33
$query = "SELECT user_id, username, display_name FROM ".TABLE_PREFIX."users WHERE user_id != '1' ORDER BY display_name,username";
33
$query = "SELECT user_id, username, display_name, active FROM ".TABLE_PREFIX."users WHERE user_id != '1' ORDER BY display_name,username";
34 34
$results = $database->query($query);
35 35
if($database->is_error()) {
36 36
	$admin->print_error($database->get_error(), 'index.php');
......
42 42
	// Insert first value to say please select
43 43
	$template->set_var('VALUE', '');
44 44
	$template->set_var('NAME', $TEXT['PLEASE_SELECT'].'...');
45
	$template->set_var('STATUS', 'text-decoration :none;' );
45 46
	$template->parse('list', 'list_block', true);
46 47
	// Loop through users
47 48
	while($user = $results->fetchRow()) {

Also available in: Unified diff