From 5cd3f22088a5bdac0b936fb8f923061ac857e767 Mon Sep 17 00:00:00 2001 From: jacob Date: Thu, 15 Jul 2010 20:28:35 +0000 Subject: [PATCH] migration to new user system --- admin/user_editor_window.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/user_editor_window.php b/admin/user_editor_window.php index 19dd7163..01f66d9b 100644 --- a/admin/user_editor_window.php +++ b/admin/user_editor_window.php @@ -114,10 +114,10 @@ echo mysql_error(); } $u = user_load($id); - +$types = array_keys($u['roles']); $selected = $_GET['tab']; if(!array_key_exists($selected, $tabs)) { - if(in_array('fair', $u['types']) ) + if(in_array('fair', $types) ) $selected = 'fairinfo'; else $selected = 'personal'; @@ -149,7 +149,7 @@ foreach($tabs as $k=>$t) { /* Make sure the tab is enabled */ if($t['enabled'] == false) continue; /* Make sure the user has the right type to see the tab */ - $i = array_intersect($t['types'], $u['types']); + $i = array_intersect($t['types'], $types); if(count($i) == 0) continue; if($k == $selected) $selected_index = $index;