Revision 1061
Added by aldus over 16 years ago
| trunk/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
|
| 13 | 13 |
------------------------------------- 2.8.0 ------------------------------------- |
| 14 |
14-July 2009 Dietrich Roland Pehlke |
|
| 15 |
! changes in frontend.functions.php, line 323: 'date' to 'gmdate' to avoid E_STRICT warnings. |
|
| 16 |
! changes in wb-setup.php, line 50: 'date' to 'gmdate' to avoid E_STRICT warnings. See also #741. |
|
| 14 | 17 |
13-July 2009 Matthias Gallas |
| 15 | 18 |
+ added changes from news/add.php to the upgrade-script.php |
| 16 | 19 |
13-July-2009 Ruud Eisinga |
| trunk/wb/include/jscalendar/wb-setup.php | ||
|---|---|---|
| 47 | 47 |
$jscal_lang = 'en'; |
| 48 | 48 |
} |
| 49 | 49 |
// today |
| 50 |
$jscal_today = date('Y/m/d');
|
|
| 50 |
$jscal_today = gmdate('Y/m/d');
|
|
| 51 | 51 |
// first-day-of-week |
| 52 | 52 |
$jscal_firstday = '1'; // monday |
| 53 | 53 |
if(LANGUAGE=='EN') |
| trunk/wb/framework/frontend.functions.php | ||
|---|---|---|
| 320 | 320 |
global $starttime; |
| 321 | 321 |
$vars = array('[YEAR]', '[PROCESS_TIME]');
|
| 322 | 322 |
$processtime=array_sum(explode(" ",microtime()))-$starttime;
|
| 323 |
$values = array(date($date_format),$processtime); |
|
| 323 |
$values = array(gmdate($date_format),$processtime);
|
|
| 324 | 324 |
echo str_replace($vars, $values, WEBSITE_FOOTER); |
| 325 | 325 |
} |
| 326 | 326 |
} |
Also available in: Unified diff
changes in frontend.functions.php, line 323: 'date' to 'gmdate' to avoid E_STRICT warnings. Also "wb-setup.php' inside the jscalendar folder.