Revision 1295
Added by Dietmar almost 15 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
9 | 9 |
- = Removed |
10 | 10 |
# = Bugfix |
11 | 11 |
! = Update/Change |
12 |
|
|
12 |
|
|
13 | 13 |
------------------------------------- 2.8.1 ------------------------------------- |
14 | 14 |
19-Feb-2010 Dietmar Woellbrink (Luisehahne) |
15 |
! Beginning with Ticket #901 |
|
16 |
+ add siteadd.png to backend themes |
|
17 |
! change icon add child page |
|
18 |
19-Feb-2010 Dietmar Woellbrink (Luisehahne) |
|
15 | 19 |
! update headerinfo |
16 | 20 |
! change $search_pattern for check if Javascript mailto encryption is enabled |
17 | 21 |
! module output_filter set to version 0.12 |
branches/2.8.x/wb/admin/pages/index.php | ||
---|---|---|
258 | 258 |
?> |
259 | 259 |
<td class="list_actions"> |
260 | 260 |
<?php if($admin->get_permission('pages_delete') == true AND $can_modify == true) { ?> |
261 |
<a href="javascript:add_child_page('<?php echo $page['page_id']; ?>');" title="<?php echo $TEXT['ADD']; ?>">
|
|
262 |
<img src="<?php echo THEME_URL; ?>/images/plus_16.png" name="addpage_<?php echo $page['page_id']; ?>" border="0" alt="Add Child Page" />
|
|
261 |
<a href="javascript:add_child_page('<?php echo $page['page_id']; ?>');" title="<?php echo $HEADING['ADD_PAGE']; ?>">
|
|
262 |
<img src="<?php echo THEME_URL; ?>/images/siteadd.png" name="addpage_<?php echo $page['page_id']; ?>" border="0" alt="Add Child Page" />
|
|
263 | 263 |
</a> |
264 | 264 |
<?php } ?> |
265 | 265 |
</td> |
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.x'); |
55 |
if(!defined('REVISION')) define('REVISION', '1294');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1295');
|
|
56 | 56 |
|
57 | 57 |
?> |
Also available in: Unified diff
Beginning with Ticket #901
add siteadd.png to backend themes
change icon add child page