Revision 1518
Added by Luisehahne about 14 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 12 | 12 |
|
| 13 | 13 |
=============================== FEATURES FREEZE ================================ |
| 14 | 14 |
----------------------------------- Fixes 2.8.2 -------------------------------- |
| 15 |
26 Okt-2011 Build 1518 Dietmar Woellbrink (Luisehahne) |
|
| 16 |
# see http://www.websitebaker2.org/forum/index.php/topic,22649.msg152666.html#msg152666 |
|
| 15 | 17 |
24 Okt-2011 Build 1517 Dietmar Woellbrink (Luisehahne) |
| 16 | 18 |
# fix SERVER_EMAIL in language files |
| 17 | 19 |
# fix encoded text in sections.php |
| branches/2.8.x/wb/admin/pages/sections.php | ||
|---|---|---|
| 266 | 266 |
{
|
| 267 | 267 |
$edit_page = ''; |
| 268 | 268 |
} |
| 269 |
$sec_anchor = (defined( 'SEC_ANCHOR' ) && ( SEC_ANCHOR != '' ) ? SEC_ANCHOR : ''); |
|
| 269 | 270 |
$edit_page_0 = '<a id="sid'.$section['section_id'].'" href="'.ADMIN_URL.'/pages/modify.php?page_id='.$results_array['page_id']; |
| 270 |
$edit_page_1 = $section['section_id'].'">'.$section['module'].'</a>'; |
|
| 271 |
$edit_page_1 = ($sec_anchor!='') ? '#'.$sec_anchor.$section['section_id'].'">' : '">'; |
|
| 272 |
$edit_page_1 .= $section['module'].'</a>'; |
|
| 271 | 273 |
if(SECTION_BLOCKS) |
| 272 | 274 |
{
|
| 273 | 275 |
if($edit_page == '') |
| 274 | 276 |
{
|
| 275 | 277 |
if(defined('EDIT_ONE_SECTION') && EDIT_ONE_SECTION)
|
| 276 | 278 |
{
|
| 277 |
$edit_page = $edit_page_0.'&wysiwyg='.$edit_page_1; |
|
| 279 |
$edit_page = $edit_page_0.'&wysiwyg='.$section['section_id'].$edit_page_1;
|
|
| 278 | 280 |
} else {
|
| 279 |
$edit_page = $edit_page_0.'#wb_'.$edit_page_1;
|
|
| 281 |
$edit_page = $edit_page_0.$edit_page_1; |
|
| 280 | 282 |
} |
| 281 | 283 |
} |
| 282 | 284 |
$input_attribute = 'input_normal'; |
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 52 | 52 |
|
| 53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
| 54 | 54 |
if(!defined('VERSION')) define('VERSION', '2.8.2');
|
| 55 |
if(!defined('REVISION')) define('REVISION', '1517');
|
|
| 55 |
if(!defined('REVISION')) define('REVISION', '1518');
|
|
Also available in: Unified diff
see http://www.websitebaker2.org/forum/index.php/topic,22649.msg152666.html#msg152666