diff --git a/inc/page.php b/inc/page.php
index f012e88..ff2a24a 100644
--- a/inc/page.php
+++ b/inc/page.php
@@ -265,15 +265,11 @@ class Page {
}
function print_title() {
- $title = $this->title();
+ $title = $this->title;
$name = $this->settings->name;
echo "
$title - $name";
}
- function title() {
- return ucfirst($this->name);
- }
-
function print_table_rows($row, $array, $print_headers = true) {
if ($print_headers && !$this->table_headers_printed) {
$headers = array_keys($array);
@@ -311,7 +307,7 @@ class Page {
}
function print_page_header($container_start = true) {
- $title = $this->title();
+ $title = $this->title;
if ($container_start) {
echo '';
}