diff --git a/inc/class.page.php b/inc/class.page.php --- a/inc/class.page.php +++ b/inc/class.page.php @@ -25,7 +25,7 @@ class page { })(); '; // Google analytics ga.js tracking code - private $title = ''; // Title of page + private $pagetitle = ''; // Title of page private $scripts = array(); // Scripts to include on page public function __construct($ntitle, $nscripts = array() ){ @@ -33,8 +33,10 @@ class page { $this->headCode['jQuery'] = ''; $this->headCode['jValidate'] = ''; $this->headCode['schedInput'] = ''; - - $this->title = $ntitle; + $this->headCode['outputStyle'] = ''; + $this->headCode['gliderHeadcode'] = ''; + + $this->pagetitle = $ntitle; $this->scripts = $nscripts; if($ntitle != "NOHEAD") $this->head(); @@ -43,7 +45,7 @@ class page { private function top(){ echo '
'; } @@ -57,7 +59,7 @@ class page { echo 'doctype . '> htmlargs . '> - ' . $this->title . ' :: ' . $this->base_title . ' + ' . $this->pagetitle . ' :: ' . $this->base_title . ' '; // Write out all passed scripts @@ -104,4 +106,4 @@ class page { } -?> \ No newline at end of file +?>