Merge pull request #10569 from annando/issue-10568

Issue 10568: Deleting of scheduled posts didn't work
This commit is contained in:
Hypolite Petovan 2021-08-03 08:58:22 -04:00 committed by GitHub
commit 31649a087f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -8,10 +8,10 @@
</tr>
</thead>
<tbody>
{{foreach $schedule as $entry}}
{{foreach $schedule as $row}}
<tr>
<td>{{$entry.scheduled_at}}</td>
<td>{{$entry.content}}</td>
<td>{{$row.scheduled_at}}</td>
<td>{{$row.content}}</td>
<td>
<form action="{{$baseurl}}/profile/{{$nickname}}/schedule" method="post">
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">