Fix some issues with date

This commit is contained in:
Thomas 2019-08-20 19:16:46 +02:00
parent f1ab597934
commit fb09ea8d78
3 changed files with 4 additions and 5 deletions

View file

@ -16,7 +16,6 @@ use App\SocialEntity\Compose;
use App\SocialEntity\MastodonAccount;
use DateTime;
use DateTimeZone;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Form\FormError;
use Symfony\Component\HttpFoundation\JsonResponse;
@ -195,9 +194,9 @@ class FediPlanController extends AbstractController
$params['sensitive'] = ($data->getSensitive() == null || !$data->getSensitive())?false:true;
try {
$date = new DateTime( $data->getScheduledAt()->format("Y-m-d H:i:s"), new DateTimeZone($data->getTimeZone()) );
$date = new DateTime( $data->getScheduledAt()->format("Y-m-d H:i"), new DateTimeZone($data->getTimeZone()) );
$date->setTimezone( new DateTimeZone("UTC"));
$params['scheduled_at'] = $date->format('c');
$params['scheduled_at'] = $date->format(DateTime::ISO8601);
} catch (\Exception $e) {}
try {
$response = $mastodon_api->post_statuses($params);

View file

@ -29,7 +29,7 @@
{% elseif status.visibility == "direct" %}
<i class="fa fa-envelope"></i>
{% endif %}
</small> - {{ status.scheduledAt | date('d/m/y H:m') }}
</small> - {{ status.scheduledAt | date('d/m/y H:i') }}
<button class="btn btn-danger small" data-record-id="{{ status.getId() }}" style="position: absolute;right: 5px;bottom: 5px;"
data-record-title="{{ status.content }} - {{ status.scheduledAt | date('d/m/y H:m') }}"

View file

@ -43,7 +43,7 @@
</div>
</div>
</div>
{{ form_start(form) }}
{{ form_start(form, {'attr': {'novalidate': 'novalidate'}}) }}
<div class="row" style="margin-top: 30px;">
<div class="col-md-12">
<div class="row">