summaryrefslogtreecommitdiffstats
path: root/pages/content/Pages.xml
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-09-22 15:10:03 +0200
committerneoraider <devnull@localhost>2006-09-22 15:10:03 +0200
commitdfadf61259653b09f261d3651640ae633b75c03e (patch)
treef484d23d8ab0d11c22d128c3550d6b5eab6747d6 /pages/content/Pages.xml
parentc8ef6f06beafe500b85cdb252477217d9e017114 (diff)
downloadneon-dfadf61259653b09f261d3651640ae633b75c03e.tar
neon-dfadf61259653b09f261d3651640ae633b75c03e.zip
Seitenverwaltung f?r base-Typ aktualisiert.
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') . '">';