diff --git a/include/Page.php b/include/Page.php index 7c4060a..af01b01 100644 --- a/include/Page.php +++ b/include/Page.php @@ -37,7 +37,7 @@ abstract class Page extends Responder { $this->render_foot(); } - final private function render_head() { + private function render_head() { $headtitle = $this->title; $pagetitle = $this->title; if($this->subtitle) { @@ -78,13 +78,13 @@ abstract class Page extends Responder { return $menu; } - final private function render_error() { + private function render_error() { print(replace(array('type' => 'error', 'message' => $this->error), $this->fragments['message'])); } - final private function render_foot() { + private function render_foot() { print($this->template_parts['foot']); }