Revision 1585
Added by Dietmar almost 13 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
=========================== add small Features 2.8.2 ========================== |
14 |
19 Jan-2012 Build 1583 Dietmar Woellbrink (Luisehahne) |
|
14 |
19 Jan-2012 Build 1585 Dietmar Woellbrink (Luisehahne) |
|
15 |
# fixed double table width in modify.php form module ((Tks to Ruebenwurzel) |
|
16 |
19 Jan-2012 Build 1584 Dietmar Woellbrink (Luisehahne) |
|
15 | 17 |
! form module, shows email-adress from body tag |
16 | 18 |
- remove scrollable table in overview form module |
19 |
19 Jan-2012 Build 1583 Dietmar Woellbrink (Luisehahne) |
|
17 | 20 |
! forgot upload save.php in wysiwyg module |
18 | 21 |
19 Jan-2012 Build 1582 Dietmar Woellbrink (Luisehahne) |
19 | 22 |
# wysiwyg module, fix issues with magic_quote_gpc if on |
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', '1584');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1585');
|
|
56 | 56 |
if(!defined('SP')) define('SP', 'SP2'); |
branches/2.8.x/wb/modules/form/modify.php | ||
---|---|---|
47 | 47 |
} |
48 | 48 |
|
49 | 49 |
?> |
50 |
<table summary="" width="100%" cellpadding="0" cellspacing="0" border="0" width="916">
|
|
50 |
<table summary="" width="100%" cellpadding="0" cellspacing="0" border="0"> |
|
51 | 51 |
<tr> |
52 |
<td align="left" width="33%">
|
|
52 |
<td align="left" width="50%">
|
|
53 | 53 |
<input type="button" value="<?php echo $TEXT['ADD'].' '.$TEXT['FIELD']; ?>" onclick="javascript: window.location = '<?php echo WB_URL; ?>/modules/form/add_field.php?page_id=<?php echo $page_id; ?>&section_id=<?php echo $section_id; ?>';" style="width: 100%;" /> |
54 | 54 |
</td> |
55 |
<td align="right" width="33%">
|
|
55 |
<td align="right" width="50%">
|
|
56 | 56 |
<input type="button" value="<?php echo $TEXT['SETTINGS']; ?>" onclick="javascript: window.location = '<?php echo WB_URL; ?>/modules/form/modify_settings.php?page_id=<?php echo $page_id; ?>&section_id=<?php echo $section_id; ?>';" style="width: 100%;" /> |
57 | 57 |
</td> |
58 | 58 |
</tr> |
Also available in: Unified diff
fixed double table width in modify.php form module ((Tks to Ruebenwurzel)