#30845 closed enhancement (fixed)
the number of weeks in a given year
Reported by: | luciole135 | Owned by: | boonebgorges |
---|---|---|---|
Milestone: | 4.4 | Priority: | normal |
Severity: | normal | Version: | 4.1 |
Component: | Date/Time | Keywords: | has-patch |
Focuses: | Cc: |
Description
Firstly my apologies if I'm wrong place.
I propose a correction of the function validate_date_values ($date_query = array()) of the /wp-includes/date.php file
the following 341 to 343 lines:
$date = new DateTime();
$date-> setISODate ($date_query year?, 53);
$week_count = $date-> format ('W') = '53'? 53: 52;
may be replaced by a single line (without using the class dateTime):
$week_count = date ('W', mktime (0,0,0,12,28,$date_query year?));
Indeed, the number of weeks in a given year is equal to the corresponding week number of 28 December.
http://en.Wikipedia.org/wiki/ISO_week_date
Attachments (2)
Change History (7)
Note: See
TracTickets for help on using
tickets.
number of weeks in a given year