diff --git a/schoolaccess.php b/schoolaccess.php
index 7f08268..0b32fc2 100644
--- a/schoolaccess.php
+++ b/schoolaccess.php
@@ -44,7 +44,9 @@ send_footer();
// FIXME - this needs to be beautified
function draw_dashboard(){
- send_header("School Access");
+ send_header("School Home",
+ array(),
+ "events_scheduling" );
global $config;
global $conference;
echo "
\n";
@@ -66,7 +68,7 @@ function draw_dashboard(){
}
function draw_login(){
- send_header("School Access");
+ send_header("School Home");
global $errormsg, $happymsg, $config;
if($errormsg) echo "$errormsg";
if($happymsg) echo happy($happymsg);
diff --git a/schoolfeedback.php b/schoolfeedback.php
index e63f169..5955dc6 100644
--- a/schoolfeedback.php
+++ b/schoolfeedback.php
@@ -6,7 +6,7 @@ require_once('user.inc.php');
if($_SESSION['schoolid'] && $_SESSION['schoolaccesscode'])
{
$title = i18n("Feedback / Questions");
- send_header($title, array("School Access" => "schoolaccess.php"));
+ send_header($title, array("School Home" => "schoolaccess.php"));
// load the school info
$q=mysql_query("SELECT * FROM schools WHERE id='".$_SESSION['schoolid']."' AND accesscode='".$_SESSION['schoolaccesscode']."' AND year='".$config['FAIRYEAR']."'");
diff --git a/schoolinfo.php b/schoolinfo.php
index d53efe1..12b5c3b 100644
--- a/schoolinfo.php
+++ b/schoolinfo.php
@@ -6,7 +6,7 @@ require_once('user.inc.php');
if($_SESSION['schoolid'] && $_SESSION['schoolaccesscode'])
{
$title = i18n("School Information");
- send_header($title, array("School Access" => "schoolaccess.php"));
+ send_header($title, array("School Home" => "schoolaccess.php"));
$q=mysql_query("SELECT * FROM schools WHERE id='".$_SESSION['schoolid']."' AND accesscode='".$_SESSION['schoolaccesscode']."' AND year='".$config['FAIRYEAR']."'");
echo mysql_error();
diff --git a/schoolschedule.php b/schoolschedule.php
index 55f0241..4ae88bf 100644
--- a/schoolschedule.php
+++ b/schoolschedule.php
@@ -143,9 +143,7 @@ if($_SESSION['schoolid'] && $_SESSION['schoolaccesscode']){
else {
send_header("Event Registration",
- array('Committee Main' => 'committee_main.php',
- 'Administration' => 'admin/index.php',
- 'Events & Scheduling' => 'admin/eventsscheduling.php'),
+ array('School Home' => 'schoolaccess.php'),
"events_scheduling" );
echo "
";
?>
diff --git a/schoolstudents.php b/schoolstudents.php
index da4c77d..7fcf3c7 100644
--- a/schoolstudents.php
+++ b/schoolstudents.php
@@ -21,7 +21,7 @@ if($_SESSION['schoolid'] && $_SESSION['schoolaccesscode'] && $conference['type']
}
}else{
$title = i18n("Manage Students");
- send_header($title, array("School Access" => "schoolaccess.php"));
+ send_header($title, array("School Home" => "schoolaccess.php"));
draw_javascript();
draw_list();
send_footer();
diff --git a/schoolteams.php b/schoolteams.php
index 9c766a5..b41a474 100644
--- a/schoolteams.php
+++ b/schoolteams.php
@@ -70,7 +70,7 @@ if($_SESSION['schoolid'] && $_SESSION['schoolaccesscode'] && $conference['type']
function draw_page(){
global $conference;
$title = i18n("Manage Teams");
- send_header($title, array("School Access" => "schoolaccess.php"));
+ send_header($title, array("School Home" => "schoolaccess.php"));
?>