Revision 2021
Added by darkviper almost 11 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
=============================================================================== |
13 | 13 |
|
14 |
06 Dec-2013 Build 2021 Manuela v.d.Decken(DarkViper) |
|
15 |
! PageTree::_makeSql() added sort order to list of sections per page |
|
14 | 16 |
06 Dec-2013 Build 2020 Dietmar Woellbrink (Luisehahne) |
15 | 17 |
# /admin/languages/detail.php::getInfoFromLanguageFile() change require_once to require |
16 | 18 |
05 Dec-2013 Build 2019 Dietmar Woellbrink (Luisehahne) |
branches/2.8.x/wb/admin/pages/PageTree.php | ||
---|---|---|
173 | 173 |
. 'p.`page_id`, p.`parent`, p.`level`, p.`language`, p.`admin_groups`, ' |
174 | 174 |
. 'p.`admin_users`, p.`viewing_groups`, p.`viewing_users`, p.`visibility`, ' |
175 | 175 |
. 'p.`menu_title`, p.`page_title`, p.`page_trail`, ' |
176 |
. 'GROUP_CONCAT(CAST(CONCAT(s.`section_id`, \' - \', s.`module`) AS CHAR) SEPARATOR \'\n\') `section_list` ' |
|
176 |
. 'GROUP_CONCAT(CAST(CONCAT(s.`section_id`, \' - \', s.`module`) AS CHAR) ORDER BY s.`position` SEPARATOR \'\n\') `section_list` '
|
|
177 | 177 |
. 'FROM `'.$this->_oDb->TablePrefix.'pages` p ' |
178 | 178 |
. 'INNER JOIN `'.$this->_oDb->TablePrefix.'sections` s ' |
179 | 179 |
. 'ON p.`page_id`=s.`page_id` ' |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
51 | 51 |
|
52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.3'); |
54 |
if(!defined('REVISION')) define('REVISION', '2020');
|
|
54 |
if(!defined('REVISION')) define('REVISION', '2021');
|
|
55 | 55 |
if(!defined('SP')) define('SP', ''); |
Also available in: Unified diff
! PageTree::_makeSql() added sort order to list of sections per page