Revision 1956
Added by darkviper about 12 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
=============================================================================== |
| 13 | 13 |
|
| 14 |
14 Aug-2013 Build 1956 M.v.d.Decken(DarkViper) |
|
| 15 |
# typofixes in /admin/pages/ |
|
| 14 | 16 |
14 Aug-2013 Build 1955 M.v.d.Decken(DarkViper) |
| 15 | 17 |
# /modules/fckeditor update to version 2.9.9 IE fix (from Marmot) |
| 16 | 18 |
13 Aug-2013 Build 1954 M.v.d.Decken(DarkViper) |
| branches/2.8.x/wb/admin/pages/settings.php | ||
|---|---|---|
| 471 | 471 |
// create indent chars |
| 472 | 472 |
$sTitlePrefix = str_repeat('-- ', $aPage['level']).' ';
|
| 473 | 473 |
$aTplItemData['PAGE_CODE_PAGE_TITLE'] = $sTitlePrefix . $aPage['menu_title']; |
| 474 |
$aTplItemData['PAGE_CODE_VALUE'] = intval($aPage['page_code']);
|
|
| 474 |
$aTplItemData['PAGE_CODE_VALUE'] = intval($aPage['page_ids']);
|
|
| 475 | 475 |
// set SELECTED status of this entry |
| 476 | 476 |
if( $aPage['page_id'] == $aCurrentPage['page_code'] |
| 477 | 477 |
&& $aCurrentPage['page_code'] != 0 |
| branches/2.8.x/wb/admin/pages/index.php | ||
|---|---|---|
| 159 | 159 |
$aNewEntry['DISABLED'] = ($aItem['disabled'] ? ' disabled="disabled" class="disabled"' : ''); |
| 160 | 160 |
if(!$aItem['parent']) {
|
| 161 | 161 |
$aNewEntry['FLAG_ROOT_ICON'] = ' style="background-image: url('.THEME_REL.'/images/flags/'
|
| 162 |
. strtolower($aItem['LANGUAGE']).'.png);"';
|
|
| 162 |
. strtolower($aItem['language']).'.png);"';
|
|
| 163 | 163 |
} |
| 164 | 164 |
$aNewEntry['TITLE'] = str_repeat('- ', $aItem['level']).$aItem['menu_title'];
|
| 165 | 165 |
// write block into template |
| 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', '1955');
|
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1956');
|
|
| 55 | 55 |
if(!defined('SP')) define('SP', '');
|
Also available in: Unified diff
typofixes in /admin/pages/