summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-12-09 02:18:00 +0100
committerneoraider <devnull@localhost>2006-12-09 02:18:00 +0100
commit7be63518bdb86fb747dda20918ef6eab3d30e40c (patch)
treee9239af6d9efa6d7a2129adb71ca77fb25a0f59d /templates
parentfa39bfd963d7d05335d968b0efdfd9bb9a40f132 (diff)
downloadneon-7be63518bdb86fb747dda20918ef6eab3d30e40c.tar
neon-7be63518bdb86fb747dda20918ef6eab3d30e40c.zip
?bersetzung vereinfacht; alle Seiten ?bersetzt
Diffstat (limited to 'templates')
-rw-r--r--templates/default.inc.php6
-rw-r--r--templates/phpexec.inc.php4
2 files changed, 5 insertions, 5 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 />';
diff --git a/templates/phpexec.inc.php b/templates/phpexec.inc.php
index 18c33be..db8373a 100644
--- a/templates/phpexec.inc.php
+++ b/templates/phpexec.inc.php
@@ -1,5 +1,5 @@
<?PHP
- Uses('message', 'links');
+ Uses('links');
class phpexec_template {
function GetPage($data) {
@@ -16,7 +16,7 @@
}
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') . '">';