";
//if we're under /admin or /config then we want to show the ? help icon
if(substr(getcwd(),-6)=="/admin" || substr(getcwd(),-7)=="/config")
@@ -1024,7 +1029,7 @@ function output_page_cms($filename)
if(mysql_num_rows($q))
{
$r=mysql_fetch_object($q);
- send_header($r->title);
+ send_header($r->title,null,null,true);
if(file_exists("data/logo-200.gif") && $r->showlogo==1)
echo "";
@@ -1036,7 +1041,7 @@ function output_page_cms($filename)
echo $r->text;
}
else {
- send_header(i18n("Error: File not found"));
+ send_header("Error: File not found");
echo error(i18n("The file you have requested (%1), does not exist on the server.",array($filename)));
return;
//not defined, lets grab the default text
diff --git a/important_dates.php b/important_dates.php
index 596a013..40dadd2 100644
--- a/important_dates.php
+++ b/important_dates.php
@@ -23,7 +23,7 @@
?>
include "common.inc.php";
- send_header(i18n("Important Dates"),null,"important_dates");
+ send_header("Important Dates",null,"important_dates");
echo "
";
diff --git a/schoolaccess.php b/schoolaccess.php
index 9327979..e4ba37d 100644
--- a/schoolaccess.php
+++ b/schoolaccess.php
@@ -20,7 +20,7 @@ if($_GET['action']=="logout")
unset($_SESSION['schoolaccesscode']);
$happymsg=i18n("You have been logged out from the school access page");
}
-send_header(i18n("School Access"));
+send_header("School Access");
diff --git a/schoolinvite.php b/schoolinvite.php
index 57f111e..07ba1c9 100644
--- a/schoolinvite.php
+++ b/schoolinvite.php
@@ -3,7 +3,7 @@ include "common.inc.php";
if($_SESSION['schoolid'] && $_SESSION['schoolaccesscode'])
{
- send_header(i18n("School Participant Invitations"));
+ send_header("School Participant Invitations");
echo "<< ".i18n("Return to school access main page")." ";
echo " ";