Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1835)
+++ branches/2.8.x/CHANGELOG	(revision 1836)
@@ -13,6 +13,8 @@
 
 
 
+12 Dez-2012 Build 1836 Dietmar Woellbrink (Luisehahne)
+# fixed WB admin wrapper script, could never run at end if section_id == 0
 10 Dez-2012 Build 1835 Dietmar Woellbrink (Luisehahne)
 ! update dragdrop reorder positions of a page tree
 10 Dez-2012 Build 1834 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1835)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1836)
@@ -51,5 +51,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.3');
-if(!defined('REVISION')) define('REVISION', '1835');
+if(!defined('REVISION')) define('REVISION', '1836');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/modules/admin.php
===================================================================
--- branches/2.8.x/wb/modules/admin.php	(revision 1835)
+++ branches/2.8.x/wb/modules/admin.php	(revision 1836)
@@ -35,7 +35,7 @@
     $page_id = isset($aActionRequest['page_id']) ? intval($aActionRequest['page_id']) :  (isset($page_id) ? intval($page_id) : 0);
     $section_id = isset($aActionRequest['section_id']) ? intval($aActionRequest['section_id']) : (isset($section_id) ? intval($section_id) : 0);
 
-	if(	($page_id == 0) ||( $section_id == 0)  ) {
+	if(	($page_id == 0) ) {
 		$admin->send_header("Location: index.php");
 		exit(0);
 	}
