diff --git a/admin/index.php b/admin/index.php
index a65f589e..4ad4616d 100644
--- a/admin/index.php
+++ b/admin/index.php
@@ -43,7 +43,7 @@
else
echo theme_icon("volunteer_management")."
".i18n("Volunteer Management")."
(".i18n("disabled").")";
echo '
';
- echo " ".theme_icon("sciencefair_management")." ".i18n("Science Fair Management")." | ";
+ echo " ".theme_icon("sciencefair_management")." ".i18n("Science Fair Management")." | ";
echo ' | ';
echo ' | ';
echo ' |
';
diff --git a/admin/user_editor_window.php b/admin/user_editor_window.php
index 94f0790c..3fa6e87b 100644
--- a/admin/user_editor_window.php
+++ b/admin/user_editor_window.php
@@ -32,7 +32,7 @@ $tabs = array( 'fairinfo' => array(
'types' => array('fair'),
'file' => '../fair_info.php',
'enabled' => true,),
- 'fairstats' => array(
+ 'fairstatsgathering' => array(
'label' => 'Fair Stats Gathering',
'types' => array('fair'),
'file' => 'fair_stats_select.php',
@@ -72,6 +72,11 @@ $tabs = array( 'fairinfo' => array(
'types' => array('volunteer'),
'file' => '../volunteer_position.php',
'enabled' => true,),
+ 'fairstats' => array(
+ 'label' => 'Fair Statistics and Information',
+ 'types' => array('fair'),
+ 'file' => '../fair_stats.php',
+ 'enabled' => true,),
);
@@ -123,15 +128,37 @@ if($_GET['sub'] == 1) {
exit;
}
-
-
send_popup_header(i18n("User Editor").": {$u['name']}");
+
+/* Setup tabs */
+echo '';
+echo '
';
+$index = 0;
+$selected_index = 0;
+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']);
+ if(count($i) == 0) continue;
+
+ if($k == $selected) $selected_index = $index;
+ $index++;
+
+ /* Show the tab */
+ $href = "{$_SERVER['PHP_SELF']}?id=$id&tab=$k&sub=1";
+ echo "- ".i18n($t['label'])."
";
+}
+echo '
';
+
?>