From: Oliver Hader Date: Thu, 28 Feb 2008 21:22:00 +0000 (+0000) Subject: Fixed bug #5252: Pages with "Hide in menu" checked use normal page icon in list module X-Git-Tag: TYPO3_4-2-0beta3~59 X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/commitdiff_plain/3114f26acbbf1d86e516c95c045fef74a9e15cad?hp=10270bf7728f5e5f5ffd41d7545eea36718bb13c Fixed bug #5252: Pages with "Hide in menu" checked use normal page icon in list module git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@3317 709f56b5-9817-0410-a4d7-c38de5d9e867 --- diff --git a/ChangeLog b/ChangeLog index e6fbf3af0949..f4b27a4a152c 100755 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,7 @@ * Fixed bug #7630: Several problems with locking API (t3lib_lock) * Fixed bug #7700: Fatal error if caching is disabled and locking enabled (follow-up on bug #7630) + * Fixed bug #5252: Pages with "Hide in menu" checked use normal page icon in list module 2008-02-27 Stanislas Rolland diff --git a/typo3/class.db_list_extra.inc b/typo3/class.db_list_extra.inc index 1d173713ec4b..667bb4685849 100755 --- a/typo3/class.db_list_extra.inc +++ b/typo3/class.db_list_extra.inc @@ -317,6 +317,7 @@ class localRecordList extends recordList { if (t3lib_extMgm::isLoaded('cms')) { $selectFields[] = 'module'; $selectFields[] = 'extendToSubpages'; + $selectFields[] = 'nav_hide'; } $selectFields[] = 'doktype'; }