diff --git a/inc/class.page.php b/inc/class.page.php --- a/inc/class.page.php +++ b/inc/class.page.php @@ -33,12 +33,12 @@ class page { public function __construct($ntitle, $nscripts = array(), $immediate = TRUE) { // Scripts and styles available to include - $this->headCode['jQuery'] = ''; + $this->headCode['jQuery'] = ''; $this->headCode['jValidate'] = ''; $this->headCode['schedInput'] = ''; - $this->headCode['outputPrintStyle'] = ''; - $this->headCode['outputStyle'] = ''; - $this->headCode['gliderHeadcode'] = ''; + $this->headCode['outputPrintStyle'] = ''; + $this->headCode['outputStyle'] = ''; + $this->headCode['gliderHeadcode'] = ''; $this->pagetitle = $ntitle; $this->scripts = $nscripts; @@ -69,8 +69,12 @@ class page { private function top(){ echo ' +

SlatePermutate
'.$this->pagetitle.'

+ + + + +
'; } @@ -83,7 +87,8 @@ class page { htmlargs . '> ' . $this->pagetitle . ' :: ' . $this->base_title . ' - '; + + '; // Write out all passed scripts foreach ($this->scripts as $i){ @@ -91,14 +96,14 @@ class page { } echo ' - bodyargs.' >'; + bodyargs.' >
'; echo $this->top(); // Write out top } public function foot(){ echo '
'; $this->pageGenTime = round(microtime(), 3); - echo ''; + echo '
'; echo $this->trackingcode; echo ''; } @@ -120,9 +125,9 @@ class page { echo '

Saved Schedules:

'; foreach($session['saved'] as $key => $schedule){ $sch = unserialize($schedule); - echo "#" . ($key + 1) . " - " . $sch->getName() - . '
' - . "\"[del]\"/" + echo "#" . ($key + 1) . " - " . $sch->getName() + . " - view" .' edit ' + . "delete" . "

\n"; } echo '
';