summaryrefslogtreecommitdiffstats
path: root/handlers
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-01-13 00:49:05 +0100
committerneoraider <devnull@localhost>2006-01-13 00:49:05 +0100
commit8b89c8c8a9001c5f5b38465ceb58306fc6f0659e (patch)
treea5b57b8809365c8e3184ae81bd193986367e31b8 /handlers
parentecb8233cd7e9fbacd7614028115161565e841d87 (diff)
downloadneon-8b89c8c8a9001c5f5b38465ceb58306fc6f0659e.tar
neon-8b89c8c8a9001c5f5b38465ceb58306fc6f0659e.zip
Navigationsleiste verbessert (ungenutzte Eintr?ge werden ausgeblendet); einige kleinere ?nderungen + Bugs gefixt
Diffstat (limited to 'handlers')
-rw-r--r--handlers/default.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers/default.inc.php b/handlers/default.inc.php
index 0ea0a7b..2e2cd96 100644
--- a/handlers/default.inc.php
+++ b/handlers/default.inc.php
@@ -9,7 +9,7 @@
$title = strtr($data['title'], $tr);
else
$title = strtr($data['_page'], array(':' => ' - '));
- $content = strtr($data['content'], $tr);
+ $content = '<h2>' . $title . '</h2>' . strtr($data['content'], $tr);
return array('title' => $title, 'content' => $content);
}