Revision 1909
Added by Luisehahne over 12 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 12 | 12 |
=============================================================================== |
| 13 | 13 |
|
| 14 | 14 |
|
| 15 |
07 Jun-2013 Build 1909 Dietmar Woellbrink (Luisehahne) |
|
| 16 |
! install/save.php,search_modext.php set $sSectionIdPrefix (SEC_ANCHOR) to the right value |
|
| 15 | 17 |
07 Jun-2013 Build 1908 Dietmar Woellbrink (Luisehahne) |
| 16 | 18 |
! class.admin.php corrected url_help, |
| 17 | 19 |
add Translat::disableAddon() in methode print_footer |
| 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', '1908');
|
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1909');
|
|
| 55 | 55 |
if(!defined('SP')) define('SP', '');
|
| branches/2.8.x/wb/search/search_modext.php | ||
|---|---|---|
| 166 | 166 |
|
| 167 | 167 |
// since wb 2.7.1 the section-anchor is configurable - SEC_ANCHOR holds the anchor name |
| 168 | 168 |
if(substr($page_link_target,0,12)=='#wb_section_') {
|
| 169 |
if(defined('SEC_ANCHOR') && SEC_ANCHOR!='') {
|
|
| 169 |
if(defined('SEC_ANCHOR') && SEC_ANCHOR!='none') {
|
|
| 170 | 170 |
$sec_id = substr($page_link_target, 12); |
| 171 | 171 |
$page_link_target = '#'.SEC_ANCHOR.$sec_id; |
| 172 | 172 |
} else { // section-anchors are disabled
|
| branches/2.8.x/wb/install/save.php | ||
|---|---|---|
| 484 | 484 |
." ( 9, 'er_level', '0')," |
| 485 | 485 |
." (10, 'default_language', '$default_language')," |
| 486 | 486 |
." (11, 'app_name', 'wb_$session_rand')," |
| 487 |
." (12, 'sec_anchor', 'section_'),"
|
|
| 487 |
." (12, 'sec_anchor', 'Sec'),"
|
|
| 488 | 488 |
." (13, 'default_timezone', '$default_timezone')," |
| 489 | 489 |
." (14, 'default_date_format', 'Y-m-d')," |
| 490 | 490 |
." (15, 'default_time_format', 'h:i A')," |
Also available in: Unified diff
! install/save.php,search_modext.php set $sSectionIdPrefix (SEC_ANCHOR) to the right value