summaryrefslogtreecommitdiffstats
path: root/templates/default.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/default.inc.php')
-rw-r--r--templates/default.inc.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/default.inc.php b/templates/default.inc.php
index c416f44..a6fc876 100644
--- a/templates/default.inc.php
+++ b/templates/default.inc.php
@@ -1,5 +1,5 @@
<?PHP
- Uses('message', 'links');
+ Uses('links');
class default_template {
function GetPage($data) {
@@ -14,14 +14,14 @@
}
function GetEditor($data) {
- $title = 'Edit \'' . $data['_page'] . '\'';
+ $title = '{{Edit \'' . $data['_page'] . '\'}}';
$content = '<h2>' . $title . '</h2>';
$content .= '<form method="post" action="' . $GLOBALS['links']->GetNeonLink('Pages:Edit') . '">';
$content .= '<input type="hidden" name="name" value="' . $data['_page'] . '" />';
$content .= '<input type="hidden" name="type" value="' . $data['_type'] . '" />';
$content .= '<input type="hidden" name="backlink" value="' . htmlspecialchars($data['_backlink']) . '" />';
- $content .= 'Titel: <input type="text" name="data_title" value="';
+ $content .= '{{Title}}: <input type="text" name="data_title" value="';
$content .= htmlspecialchars($data['title']) . '" size="70" /><br />';
$content .= '<textarea name="data_content" class="pageedit spaced-top spaced-bottom" rows="25" cols="70">';
$content .= htmlspecialchars($data['content']) . '</textarea><br />';