diff --git a/class.schedule.php b/class.schedule.php --- a/class.schedule.php +++ b/class.schedule.php @@ -271,7 +271,7 @@ class Schedule $headcode = array('jQuery', 'outputStyle', 'outputPrintStyle'); } else { - $footcloser .=""; $headcode = array('outputStyle', 'gliderHeadcode'); @@ -313,14 +313,17 @@ class Schedule if($this->nPermutations > 0) { - $table .= "
"; + $table .= "
\n" + . "
\n"; for($nn = 1; $nn <= $this->nPermutations; $nn++) { $table .= " " . $nn . " "; } - $table .= "
"; + $table .= "
\n" + . "
" + . "
"; for($i = 0; $i < $this->nPermutations; $i++) { @@ -563,10 +566,14 @@ class Schedule } // End of table - $table .= "
"; + $table .= '
\n"; } - echo $table . "
" . $footcloser; // Closes off the content div + echo $table + . "
\n" + . "
\n" + . "
\n" + . $footcloser; // Closes off the content div } else { echo '

There are no possible schedules. Please try again.

'; } diff --git a/inc/class.page.php b/inc/class.page.php --- a/inc/class.page.php +++ b/inc/class.page.php @@ -118,9 +118,14 @@ class page { } public function foot(){ - echo ''; + echo ' '; $this->pageGenTime = round(microtime(), 3); - echo ''; + echo ' +'; echo $this->trackingcode; echo ''; }