Opened 21 years ago
Closed 19 years ago
#136 closed defect (bug) (duplicate)
Month changeover in Calendar does not use gm offset
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | minor | Version: | 2.0.4 |
| Component: | General | Keywords: | calendar month |
| Focuses: | Cc: |
Description
Came from here: http://wordpress.org/support/3/8373/
Change History (5)
#3
@
21 years ago
- fixed_in_version set to 1.5
- Owner changed from anonymous to matt
- Resolution changed from 10 to 20
- Status changed from assigned to closed
#4
@
19 years ago
- Keywords calendar month added
- Resolution fixed deleted
- Status changed from closed to reopened
- Version set to 2.0.4
See http://wordpress.org/support/topic/13874
My calendar is 1 day ahead and i fixed it using this diff:
--- wp-includes/template-functions-general.php.orig 2006-07-31 22:55:03.000000000 +0200
+++ wp-includes/template-functions-general.php 2006-07-31 22:55:10.000000000 +0200
@@ -433,8 +433,8 @@
else
$thismonth = ''.zeroise(intval(substr($m, 4, 2)), 2);
} else {
- $thisyear = gmdate('Y', current_time('timestamp') + get_settings('gmt_offset') * 3600);
- $thismonth = gmdate('m', current_time('timestamp') + get_settings('gmt_offset') * 3600);
+ $thisyear = gmdate('Y', current_time('timestamp'));
+ $thismonth = gmdate('m', current_time('timestamp'));
}
$unixmonth = mktime(0, 0 , 0, $thismonth, 1, $thisyear);
Note: See
TracTickets for help on using
tickets.
This appears to be fixed in the current code, could anyone confirm if they still experience this?