summaryrefslogtreecommitdiffstats
path: root/pages/content/Pages.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pages/content/Pages.xml')
-rw-r--r--pages/content/Pages.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/pages/content/Pages.xml b/pages/content/Pages.xml
index fb9ef56..bbf0b07 100644
--- a/pages/content/Pages.xml
+++ b/pages/content/Pages.xml
@@ -18,7 +18,7 @@
echo '<h2>Seiten</h2>';
$type = $_GET['type'];
- if($type != 'c' && $type != 'n' && $type != 'e') $type = 'c';
+ if($type != 'c' && $type != 'n' && $type != 'e' && $type != 'b') $type = 'c';
echo 'Seitentyp: ';
echo '<a href="' . $GLOBALS['links']->GetNeonLink('Pages', 'type=c') . '"';
@@ -29,7 +29,10 @@
echo '>Navigation</a> | ';
echo '<a href="' . $GLOBALS['links']->GetNeonLink('Pages', 'type=e') . '"';
if($type == 'e') echo ' class="active_page_link"';
- echo '>Editor</a><br /><br />';
+ echo '>Editor</a> | ';
+ echo '<a href="' . $GLOBALS['links']->GetNeonLink('Pages', 'type=b') . '"';
+ if($type == 'b') echo ' class="active_page_link"';
+ echo '>Basis</a><br /><br />';
echo '<form method="post" action="' . $GLOBALS['links']->GetNeonLink('Pages:Handle') . '">';