Revision 1471
Added by Dietmar over 13 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.2 ------------------------------------ |
14 |
07 Jul-2011 Build 1471 Dietmar Woellbrink (Luisehahne) |
|
15 |
! change to Release Candiate 7 |
|
14 | 16 |
07 Jul-2011 Build 1470 Dietmar Woellbrink (Luisehahne) |
15 | 17 |
# languages Typo fix (Tks to pcwacht) |
16 | 18 |
! update intro, fixed saving |
branches/2.8.x/wb/admin/pages/intro2.php | ||
---|---|---|
42 | 42 |
$admin->print_header(); |
43 | 43 |
// Write new content |
44 | 44 |
$filename = WB_PATH.PAGES_DIRECTORY.'/intro'.PAGE_EXTENSION; |
45 |
if(is_writable($filename)) { |
|
46 |
if(file_put_contents($filename, utf8_encode($content))===false){ |
|
47 |
$admin->print_error($MESSAGE['PAGES_NOT_SAVED']); |
|
48 |
} else { |
|
49 |
change_mode($filename); |
|
50 |
$admin->print_success($MESSAGE['PAGES']['INTRO_SAVED']); |
|
51 |
} |
|
45 |
if(file_put_contents($filename, utf8_encode($content))===false){ |
|
46 |
$admin->print_error($MESSAGE['PAGES_NOT_SAVED']); |
|
52 | 47 |
} else { |
48 |
change_mode($filename); |
|
49 |
$admin->print_success($MESSAGE['PAGES']['INTRO_SAVED']); |
|
50 |
} |
|
51 |
if(!is_writable($filename)) { |
|
53 | 52 |
$admin->print_error($MESSAGE['PAGES']['INTRO_NOT_WRITABLE']); |
54 | 53 |
} |
55 | 54 |
|
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
51 | 51 |
} |
52 | 52 |
|
53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
54 |
if(!defined('VERSION')) define('VERSION', '2.8.2.RC6');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1470');
|
|
54 |
if(!defined('VERSION')) define('VERSION', '2.8.2.RC7');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1471);
|
|
56 | 56 |
|
57 | 57 |
?> |
Also available in: Unified diff
change to Release Candiate 7