Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1846)
+++ branches/2.8.x/CHANGELOG	(revision 1847)
@@ -11,6 +11,9 @@
 ! = Update/Change
 ===============================================================================
 
+05 Jan-2013 Build 1847 Werner v.d.Decken(DarkViper)
+# PageTree: fixed icon requests
++ added 2 icons in wb_theme and argos_theme
 05 Jan-2013 Build 1846 Werner v.d.Decken(DarkViper)
 + added variable root page for tree generation in class a_pages_PageTree
 # added missing CSS class jsadmin for drop/down activation
Index: branches/2.8.x/wb/admin/pages/PageTree.php
===================================================================
--- branches/2.8.x/wb/admin/pages/PageTree.php	(revision 1846)
+++ branches/2.8.x/wb/admin/pages/PageTree.php	(revision 1847)
@@ -117,6 +117,7 @@
 		$this->_aReg['PAGE_TRASH']       = PAGE_TRASH;
 		$this->_aReg['PAGE_LEVEL_LIMIT'] = PAGE_LEVEL_LIMIT;
 		$this->_aReg['MANAGE_SECTIONS']  = MANAGE_SECTIONS;
+		$this->_aReg['DOCUMENT_ROOT']    = $_SERVER['DOCUMENT_ROOT'];
 		$this->_aReg['WB_URL']           = WB_URL;
 		$this->_aReg['WB_REL']           = WB_REL;
 		$this->_aReg['ACP_REL']          = ADMIN_REL;
@@ -290,11 +291,11 @@
 			          . $aPage['page_id'].'" title="'.$this->_TEXT['MODIFY'].'">';
 		}
 		$sIcon = $this->_aReg['THEME_REL'].'/images/'.$aPage['visibility'].'_16.png';
-		if(!is_readable($sIcon)) {
+		if(!is_readable($this->_aReg['DOCUMENT_ROOT'].$sIcon)) {
 			$sIcon = $this->_aReg['THEME_REL'].'/images/public_16.png';
 		}
 		$sOutput .= '<img src="'.$sIcon.'" alt="'.$this->_TEXT['VISIBILITY'].': '
-		          . $sText.'" class="page_list_rights" />';
+		          . $this->_TEXT[strtoupper($aPage['visibility'])].'" class="page_list_rights" />';
 		if($this->_oApp->get_permission('pages_modify') && $aPage['iswriteable']) {
 			$sOutput .= '<span class="modify_link">'.$aPage['menu_title'].'</span></a>';
 		}else {
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1846)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1847)
@@ -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', '1846');
+if(!defined('REVISION')) define('REVISION', '1847');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/templates/wb_theme/images/registered_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/wb_theme/images/registered_16.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/wb_theme/images/public_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/wb_theme/images/public_16.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/argos_theme/images/registered_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/argos_theme/images/registered_16.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/argos_theme/images/public_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/argos_theme/images/public_16.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
