check for posted dates based on month only

这个提交包含在:
Zach Prezkuta 2012-07-08 08:46:46 -06:00
父节点 63f10f6c6b
当前提交 c8378260bc
共有 1 个文件被更改,包括 3 次插入1 次删除

查看文件

@ -3621,7 +3621,9 @@ function posted_dates($uid,$wall) {
$dnow = substr($dthen,0,8) . '28';
$ret = array();
while($dnow >= $dthen) {
// Starting with the current month, get the first and last days of every
// month down to and including the month of the first post
while(substr($dnow, 0, 7) >= substr($dthen, 0, 7)) {
$dstart = substr($dnow,0,8) . '01';
$dend = substr($dnow,0,8) . get_dim(intval($dnow),intval(substr($dnow,5)));
$start_month = datetime_convert('','',$dstart,'Y-m-d');