Revision 1568
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 |
10 Jan-2012 Build 1568 Dietmar Woellbrink (Luisehahne) |
|
15 |
! fix show_menu2 2th parameter for template round and allcss (Tks to Ruebenwurzel) |
|
16 |
! set fingerprint_with_ip_octets default to 2 in a new installation |
|
14 | 17 |
07 Jan-2012 Build 1567 Dietmar Woellbrink (Luisehahne) |
15 | 18 |
# fix wbmailer_smtp_auth, could not be disabled after enabled |
16 | 19 |
07 Jan-2012 Build 1566 Dietmar Woellbrink (Luisehahne) |
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', '1567');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1568');
|
|
56 | 56 |
if(!defined('SP')) define('SP', 'SP2'); |
branches/2.8.x/wb/templates/allcss/index.php | ||
---|---|---|
80 | 80 |
<!-- main navigation menu --> |
81 | 81 |
<div class="menu"> |
82 | 82 |
<?php |
83 |
show_menu2(0,SM2_ROOT,SM2_ROOT,SM2_TRIM,'<li><span class="menu-default">[ac][menu_title]</a></span>','</li>','<ul>','</ul>');
|
|
83 |
show_menu2(0,SM2_ROOT,SM2_CURR+1,SM2_TRIM,'<li><span class="menu-default">[ac][menu_title]</a></span>','</li>','<ul>','</ul>');
|
|
84 | 84 |
// CODE FOR WEBSITE BAKER FRONTEND LOGIN |
85 | 85 |
if (FRONTEND_LOGIN == 'enabled' && VISIBILITY != 'private' && $wb->get_session('USER_ID') == '') { |
86 | 86 |
$redirect_url = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : WB_URL ); |
branches/2.8.x/wb/templates/round/index.php | ||
---|---|---|
78 | 78 |
</tr> |
79 | 79 |
<tr> |
80 | 80 |
<td width="170"> |
81 |
<?php show_menu2(0,SM2_ROOT,SM2_ROOT,SM2_TRIM,'<li><span class="menu-default">[ac][menu_title]</a></span>','</li>','<ul>','</ul>');?>
|
|
81 |
<?php show_menu2(0,SM2_ROOT,SM2_CURR+1,SM2_TRIM,'<li><span class="menu-default">[ac][menu_title]</a></span>','</li>','<ul>','</ul>');?>
|
|
82 | 82 |
</td> |
83 | 83 |
</tr> |
84 | 84 |
<tr> |
branches/2.8.x/wb/install/save.php | ||
---|---|---|
499 | 499 |
." ('wbmailer_smtp_auth', '')," |
500 | 500 |
." ('wbmailer_smtp_username', '')," |
501 | 501 |
." ('wbmailer_smtp_password', '')," |
502 |
." ('fingerprint_with_ip_octets', '3'),"
|
|
502 |
." ('fingerprint_with_ip_octets', '2'),"
|
|
503 | 503 |
." ('secure_form_module', '')," |
504 | 504 |
." ('mediasettings', '')"; |
505 | 505 |
$database->query($settings_rows); |
Also available in: Unified diff
! fix show_menu2 2th parameter for template round and allcss (Tks to Ruebenwurzel)
! set fingerprint_with_ip_octets default to 2 in a new installation