mirror of
https://github.com/friendica/friendica
synced 2024-11-18 04:23:41 +00:00
Issue 10568: Deleting of scheduled posts didn't work
This commit is contained in:
parent
24ba5f61d0
commit
b2bf467afc
1 changed files with 3 additions and 3 deletions
|
@ -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}}">
|
||||
|
|
Loading…
Reference in a new issue