Merge pull request #10571 from annando/local
Display the publish time in the local timezone
This commit is contained in:
commit
3d2a5ddf7c
|
@ -29,6 +29,7 @@ use Friendica\DI;
|
||||||
use Friendica\Model\Post;
|
use Friendica\Model\Post;
|
||||||
use Friendica\Module\BaseProfile;
|
use Friendica\Module\BaseProfile;
|
||||||
use Friendica\Network\HTTPException;
|
use Friendica\Network\HTTPException;
|
||||||
|
use Friendica\Util\DateTimeFormat;
|
||||||
|
|
||||||
class Schedule extends BaseProfile
|
class Schedule extends BaseProfile
|
||||||
{
|
{
|
||||||
|
@ -68,7 +69,7 @@ class Schedule extends BaseProfile
|
||||||
}
|
}
|
||||||
$schedule[] = [
|
$schedule[] = [
|
||||||
'id' => $row['id'],
|
'id' => $row['id'],
|
||||||
'scheduled_at' => $row['delayed'],
|
'scheduled_at' => DateTimeFormat::local($row['delayed']),
|
||||||
'content' => BBCode::toPlaintext($parameter['item']['body'], false)
|
'content' => BBCode::toPlaintext($parameter['item']['body'], false)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue