Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1998)
+++ branches/2.8.x/CHANGELOG	(revision 1999)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+14 Nov-2013 Build 1999 Manuela v.d.Decken(DarkViper)
+! admin/pages/PageTree added list of sections to the tooltip of 'manage_sections'
 13 Nov-2013 Build 1998 Manuela v.d.Decken(DarkViper)
 + WbDatabase added new methods fetchObject(), rewind(), seekRow(), freeResult()
 ! renamed some methods and add aliases for the old names
Index: branches/2.8.x/wb/admin/pages/PageTree.php
===================================================================
--- branches/2.8.x/wb/admin/pages/PageTree.php	(revision 1998)
+++ branches/2.8.x/wb/admin/pages/PageTree.php	(revision 1999)
@@ -172,22 +172,14 @@
 		      .        'p.`position`, '
 		      .        'p.`page_id`, p.`parent`, p.`level`, p.`language`, p.`admin_groups`, '
 		      .        'p.`admin_users`, p.`viewing_groups`, p.`viewing_users`, p.`visibility`, '
-		      .        'p.`menu_title`, p.`page_title`, p.`page_trail` '
+		      .        'p.`menu_title`, p.`page_title`, p.`page_trail`, '
+		      .        'GROUP_CONCAT(CAST(CONCAT(s.`section_id`, \' - \', s.`module`) AS CHAR) SEPARATOR \'\n\') `section_list` '
 		      . 'FROM `'.$this->_oDb->TablePrefix.'pages` p '
 		      .    'INNER JOIN `'.$this->_oDb->TablePrefix.'sections` s '
-		      .    'ON p.`page_id`=s.`page_id` ';
-//		if($iParentKey) {
-//
-//			$sql .= 'WHERE `root_parent`='.$iParentKey.' ';
-//		} else {
-//	// if tree based on root is requested (parent=0)
-			$sql .= 'WHERE `parent`='.$iParentKey.' ';
-//		}
-	// do not get pages with 'deleted' flag set on activated trashcan
-		if($this->_oReg->PageTrash != 'inline') {
-			$sql .= 'AND `visibility`!=\'deleted\' ';
-		}
-		$sql .= 'GROUP BY p.`page_id` '
+		      .    'ON p.`page_id`=s.`page_id` '
+		      . 'WHERE `parent`='.$iParentKey.' '
+		      .    (($this->_oReg->PageTrash != 'inline') ? 'AND `visibility`!=\'deleted\' ' : '')
+		      . 'GROUP BY p.`page_id` '
 		      . 'ORDER BY p.`position` ASC';
 		return $sql;
 	}
@@ -332,9 +324,9 @@
 			$file = $this->_oApp->page_is_active($aPage) ? "clock_16.png" : "clock_red_16.png";
 			$file = ($aPage['published'] && $aPage['module'] != 'menu_link') ? $file : 'noclock_16.png';
 			$sOutput .= '<a href="'.$this->_oReg->AcpRel.'pages/sections.php?page_id='
-			          . $aPage['page_id'].'" title="'.$this->_oTrans->HEADING_MANAGE_SECTIONS.'">'
+			          . $aPage['page_id'].'" title="'.$this->_oTrans->HEADING_MANAGE_SECTIONS."\n".$aPage['section_list'].'">'
 			          . '<img src="'.$this->_oReg->ThemeRel.'images/'.$file.'" alt="'
-			          . $this->_oTrans->HEADING_MANAGE_SECTIONS.'" /></a>';
+			          . $this->_oTrans->HEADING_MANAGE_SECTIONS."\n".$aPage['section_list'].'" /></a>';
 		}else { 
 			$sOutput .= '<img src="'.$this->_oReg->ThemeRel.'images/blank_16.gif" alt=" " />';
 		}
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1998)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1999)
@@ -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', '1998');
+if(!defined('REVISION')) define('REVISION', '1999');
 if(!defined('SP')) define('SP', '');
