From 543336aef16562369c01992817f58e17144c9cad Mon Sep 17 00:00:00 2001 From: neoraider Date: Thu, 14 Dec 2006 00:06:02 +0000 Subject: Base-Type durch Subst-Erweiterungen unnoetig gemacht; Type-Konzept entfernt. --- templates/default.inc.php | 8 +++++++- templates/phpexec.inc.php | 10 +++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) (limited to 'templates') diff --git a/templates/default.inc.php b/templates/default.inc.php index a6fc876..9b94e66 100644 --- a/templates/default.inc.php +++ b/templates/default.inc.php @@ -2,6 +2,13 @@ Uses('links'); class default_template { + function GetTitle($data) { + if($data['title']) + return htmlspecialchars($data['title']); + + return strtr($data['_page'], array(':' => ' - ')); + } + function GetPage($data) { if($data['title']) $title = htmlspecialchars($data['title']); @@ -19,7 +26,6 @@ $content = '

' . $title . '

'; $content .= '
'; $content .= ''; - $content .= ''; $content .= ''; $content .= '{{Title}}:
'; diff --git a/templates/phpexec.inc.php b/templates/phpexec.inc.php index db8373a..52164a1 100644 --- a/templates/phpexec.inc.php +++ b/templates/phpexec.inc.php @@ -2,6 +2,15 @@ Uses('links'); class phpexec_template { + function GetTitle($data) { + return strtr($data['_page'], array(':' => ' - ')); + + //ob_start(); + + //$content = ob_get_contents(); + //ob_end_clean(); + } + function GetPage($data) { $title = strtr($data['_page'], array(':' => ' - ')); @@ -21,7 +30,6 @@ $content = '

' . $title . '

'; $content .= ''; $content .= ''; - $content .= ''; $content .= ''; $content .= '
'; -- cgit v1.2.3