From: Michael Date: Sun, 27 Sep 2020 05:27:52 +0000 (+0000) Subject: We don't seem to need the date formatting X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=de9cd9881c44dfba74262a0319b654786b195e3a;p=friendica.git We don't seem to need the date formatting --- diff --git a/src/Module/Conversation/Community.php b/src/Module/Conversation/Community.php index c68cced014..a783cf3898 100644 --- a/src/Module/Conversation/Community.php +++ b/src/Module/Conversation/Community.php @@ -36,7 +36,6 @@ use Friendica\DI; use Friendica\Model\Item; use Friendica\Model\User; use Friendica\Network\HTTPException; -use Friendica\Util\DateTimeFormat; class Community extends BaseModule { @@ -155,7 +154,7 @@ class Community extends BaseModule $query_parameters['max_id'] = $_GET['max_id']; } if (!empty($_GET['last_commented'])) { - $query_parameters['max_id'] = DateTimeFormat::utc($_GET['last_commented']); + $query_parameters['max_id'] = $_GET['last_commented']; } $path_all = $path . (!empty($query_parameters) ? '?' . http_build_query($query_parameters) : '');