summaryrefslogtreecommitdiffstats
path: root/templates/phpexec.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/phpexec.inc.php')
-rw-r--r--templates/phpexec.inc.php10
1 files changed, 9 insertions, 1 deletions
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 = '<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 .= '<textarea name="data_code" class="pageedit spaced-bottom" rows="25" cols="70">';
$content .= htmlspecialchars($data['code']) . '</textarea><br />';