Ticket #5292: 5292.diff
File 5292.diff, 732 bytes (added by , 17 years ago) |
---|
-
wp-includes/post.php
1584 1584 } else { 1585 1585 $lastpostdate = $cache_lastpostdate[$blog_id][$timezone]; 1586 1586 } 1587 return apply_filters( 'get_lastpostdate', $lastpostdate );1587 return apply_filters( 'get_lastpostdate', $lastpostdate, $timezone ); 1588 1588 } 1589 1589 1590 1590 function get_lastpostmodified($timezone = 'server') { … … 1611 1611 } else { 1612 1612 $lastpostmodified = $cache_lastpostmodified[$blog_id][$timezone]; 1613 1613 } 1614 return apply_filters( 'get_lastpostmodified', $lastpostmodified );1614 return apply_filters( 'get_lastpostmodified', $lastpostmodified, $timezone ); 1615 1615 } 1616 1616 1617 1617 //