Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1430)
+++ branches/2.8.x/CHANGELOG	(revision 1431)
@@ -11,7 +11,9 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.2 -------------------------------------
-09 Feb-2011 Build 1430 Dietmar Woellbrink (Luisehahne)
+11 Feb-2011 Build 1431 Dietmar Woellbrink (Luisehahne)
++ add page position in get_page_details 
+11 Feb-2011 Build 1430 Dietmar Woellbrink (Luisehahne)
 # fix save settings dir and file mode (Tks to the community)
 09 Feb-2011 Build 1429 Dietmar Woellbrink (Luisehahne)
 # add forgotten javascript variable
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1430)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1431)
@@ -52,6 +52,6 @@
 
 // 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.2.RC5');
-if(!defined('REVISION')) define('REVISION', '1430');
+if(!defined('REVISION')) define('REVISION', '1431');
 
 ?>
Index: branches/2.8.x/wb/framework/class.frontend.php
===================================================================
--- branches/2.8.x/wb/framework/class.frontend.php	(revision 1430)
+++ branches/2.8.x/wb/framework/class.frontend.php	(revision 1431)
@@ -25,7 +25,7 @@
 class frontend extends wb {
 	// defaults
 	public $default_link,$default_page_id;
-	// when multiple blocks are used, show home page blocks on 
+	// when multiple blocks are used, show home page blocks on
 	// pages where no content is defined (search, login, ...)
 	public $default_block_content=true;
 
@@ -32,7 +32,7 @@
 	// page details
 	// page database row
 	public $page;
-	public $page_id,$page_title,$menu_title,$parent,$root_parent,$level,$visibility;
+	public $page_id,$page_title,$menu_title,$parent,$root_parent,$level,$position,$visibility;
 	public $page_description,$page_keywords,$page_link;
 	public $page_trail=array();
 	
@@ -162,6 +162,8 @@
 			// Page level
 			if(!defined('LEVEL')) {define('LEVEL', $this->page['level']);}
 			$this->level=$this->page['level'];
+			// Page position
+			$this->level=$this->page['position'];
 			// Page visibility
 			if(!defined('VISIBILITY')) {define('VISIBILITY', $this->page['visibility']);}
 			$this->visibility=$this->page['visibility'];
