Revision 1065
Added by Matthias over 15 years ago
trunk/CHANGELOG | ||
---|---|---|
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.0 ------------------------------------- |
14 | 14 |
14-July 2009 Matthias Gallas |
15 |
# Fixed some validiation bugs in news modul (Thanks to Luisehahne) |
|
15 |
# Fixed bug with sections are only editable in new backend-themes if blocks are enabled |
|
16 |
(Thanks to Luisehahne) |
|
17 |
# Fixed some validiation bugs in news modul (ticket #742) (Thanks to Luisehahne) |
|
16 | 18 |
14-July 2009 Dietrich Roland Pehlke |
17 | 19 |
! changes in frontend.functions.php, line 323: 'date' to 'gmdate' to avoid E_STRICT warnings. |
18 | 20 |
! changes in wb-setup.php, line 50: 'date' to 'gmdate' to avoid E_STRICT warnings. See also #741. |
trunk/wb/admin/pages/sections.php | ||
---|---|---|
218 | 218 |
$template->parse('block_list', 'block_block', true); |
219 | 219 |
} |
220 | 220 |
} else { |
221 |
$edit_page = $module_name;
|
|
221 |
$edit_page ='<a name="'.$section['section_id'].'" href="'.ADMIN_URL.'/pages/modify.php?page_id='.$page_id.'#'.$section['section_id'].'">'.$module_name.'</a>';
|
|
222 | 222 |
$input_attribute = 'input_small'; |
223 | 223 |
$template->set_var(array( |
224 | 224 |
'STYLE_DISPLAY_SECTION_BLOCK' => ' style="visibility: hidden;"', |
trunk/wb/templates/classic_theme/templates/pages_modify.htt | ||
---|---|---|
1 | 1 |
<!-- BEGIN main_block --> |
2 | 2 |
|
3 |
<table cellpadding="5" cellspacing="0" border="0" align="center" width="100%" height="50" style="margin-bottom: 10px;">
|
|
3 |
<table cellpadding="5" cellspacing="0" border="0" align="center" width="100%" style="margin-bottom: 10px;"> |
|
4 | 4 |
<tr style="background-color: #F0F0F0;"> |
5 | 5 |
<td valign="middle" align="left"> |
6 | 6 |
<h2>{HEADING_MODIFY_PAGE}</h2> |
trunk/wb/templates/wb_theme/templates/pages_modify.htt | ||
---|---|---|
1 | 1 |
<!-- BEGIN main_block --> |
2 | 2 |
|
3 |
<table cellpadding="5" cellspacing="0" border="0" align="center" width="100%" height="50" style="margin-bottom: 10px;">
|
|
3 |
<table cellpadding="5" cellspacing="0" border="0" align="center" width="100%" style="margin-bottom: 10px;"> |
|
4 | 4 |
<tr style="background-color: #F0F0F0;"> |
5 | 5 |
<td valign="middle" align="left"> |
6 | 6 |
<h2>{HEADING_MODIFY_PAGE}</h2> |
Also available in: Unified diff
Fixed bug with sections are only editable in new backend-themes if blocks are enabled (Thanks to Luisehahne)