this should catch any weirdness caused by being in different timezones and making your first post on the 31st of March
This commit is contained in:
parent
f8314d6bea
commit
a424fecdae
|
@ -3402,26 +3402,32 @@ function first_post_date($uid,$wall = false) {
|
||||||
);
|
);
|
||||||
if(count($r)) {
|
if(count($r)) {
|
||||||
// logger('first_post_date: ' . $r[0]['id'] . ' ' . $r[0]['created'], LOGGER_DATA);
|
// logger('first_post_date: ' . $r[0]['id'] . ' ' . $r[0]['created'], LOGGER_DATA);
|
||||||
return substr($r[0]['created'],0,10);
|
return substr(datetime_convert('',date_default_timezone_get(),$r[0]['created']),0,10);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function posted_dates($uid,$wall) {
|
function posted_dates($uid,$wall) {
|
||||||
$dnow = datetime_convert('','','now','Y-m-d');
|
$dnow = datetime_convert('',date_default_timezone_get(),'now','Y-m-d');
|
||||||
|
|
||||||
$dthen = first_post_date($uid,$wall);
|
$dthen = first_post_date($uid,$wall);
|
||||||
if(! $dthen)
|
if(! $dthen)
|
||||||
return array();
|
return array();
|
||||||
|
|
||||||
|
// If it's near the end of a long month, backup to the 28th so that in
|
||||||
|
// consecutive loops we'll always get a whole month difference.
|
||||||
|
|
||||||
|
if(intval(substr($dnow,8)) > 28)
|
||||||
|
$dnow = substr($dnow,0,8) . '28';
|
||||||
|
if(intval(substr($dthen,8)) > 28)
|
||||||
|
$dnow = substr($dthen,0,8) . '28';
|
||||||
|
|
||||||
$ret = array();
|
$ret = array();
|
||||||
while($dnow >= $dthen) {
|
while($dnow >= $dthen) {
|
||||||
$start_month = datetime_convert('','','first day of ' . $dnow,'Y-m-d');
|
$start_month = datetime_convert('','','first day of ' . $dnow,'Y-m-d');
|
||||||
$end_month = datetime_convert('','','last day of ' . $dnow,'Y-m-d');
|
$end_month = datetime_convert('','','last day of ' . $dnow,'Y-m-d');
|
||||||
$str = day_translate(datetime_convert('','',$dnow,'F Y'));
|
$str = day_translate(datetime_convert('','',$dnow,'F Y'));
|
||||||
$ret[] = array($str,$end_month,$start_month);
|
$ret[] = array($str,$end_month,$start_month);
|
||||||
if($start_month < $dthen)
|
|
||||||
break;
|
|
||||||
$dnow = datetime_convert('','',$dnow . ' -1 month', 'Y-m-d');
|
$dnow = datetime_convert('','',$dnow . ' -1 month', 'Y-m-d');
|
||||||
}
|
}
|
||||||
return $ret;
|
return $ret;
|
||||||
|
|
Loading…
Reference in a new issue