Revision 1807
Added by Luisehahne almost 13 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 13 | 13 |
|
| 14 | 14 |
|
| 15 | 15 |
|
| 16 |
07 Nov-2012 Build 1807 Dietmar Woellbrink (Luisehahne) |
|
| 17 |
! fallback remove Timezone abbreviation in time format |
|
| 16 | 18 |
04 Nov-2012 Build 1806 Dietmar Woellbrink (Luisehahne) |
| 17 | 19 |
# Bugfix show double header in admintools |
| 18 | 20 |
04 Nov-2012 Build 1805 Dietmar Woellbrink (Luisehahne) |
| branches/2.8.x/wb/admin/interface/time_formats.php | ||
|---|---|---|
| 38 | 38 |
$actual_time = time()+ ((isset($user_time) AND $user_time == true) ? TIMEZONE : DEFAULT_TIMEZONE); |
| 39 | 39 |
|
| 40 | 40 |
// Add values to list |
| 41 |
$TIME_FORMATS['h:i|A|T'] = gmdate('h:i A T', $actual_time);
|
|
| 42 |
$TIME_FORMATS['h:i|a|T'] = gmdate('h:i a T', $actual_time);
|
|
| 43 |
$TIME_FORMATS['H:i:s|T'] = gmdate('H:i:s T', $actual_time);
|
|
| 44 |
$TIME_FORMATS['H:i|T'] = gmdate('H:i T', $actual_time);
|
|
| 41 |
$TIME_FORMATS['h:i|A'] = gmdate('h:i A', $actual_time);
|
|
| 42 |
$TIME_FORMATS['h:i|a'] = gmdate('h:i a', $actual_time);
|
|
| 43 |
$TIME_FORMATS['H:i:s'] = gmdate('H:i:s', $actual_time);
|
|
| 44 |
$TIME_FORMATS['H:i'] = gmdate('H:i', $actual_time);
|
|
| 45 | 45 |
|
| 46 | 46 |
// Add "System Default" to list (if we need to) |
| 47 | 47 |
if(isset($user_time) AND $user_time == true) {
|
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 51 | 51 |
|
| 52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
| 53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.3');
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1806');
|
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1807');
|
|
| 55 | 55 |
if(!defined('SP')) define('SP', '');
|
Also available in: Unified diff
! fallback remove Timezone abbreviation in time format