diff options
author | friendica <info@friendica.com> | 2014-01-27 14:47:58 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-27 14:47:58 -0800 |
commit | 9551f6b40485e951db25f6c1b31b1f46cbeda5cd (patch) | |
tree | 5b84022724afb278691f663de2df20edfd9781fb /view | |
parent | d6a9497e4a3839d9fb4dba4634167f006bb3fe87 (diff) | |
parent | a3bf272753183f61723fea5dccd52abe6f0662dd (diff) | |
download | volse-hubzilla-9551f6b40485e951db25f6c1b31b1f46cbeda5cd.tar.gz volse-hubzilla-9551f6b40485e951db25f6c1b31b1f46cbeda5cd.tar.bz2 volse-hubzilla-9551f6b40485e951db25f6c1b31b1f46cbeda5cd.zip |
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/admin_hubloc.tpl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/view/tpl/admin_hubloc.tpl b/view/tpl/admin_hubloc.tpl index 6e7629094..ea840e1b3 100755 --- a/view/tpl/admin_hubloc.tpl +++ b/view/tpl/admin_hubloc.tpl @@ -1,9 +1,6 @@ <div class="generic-content-wrapper" id='adminpage'> <h1>{{$title}} - {{$page}}</h1> - <form action="{{$baseurl}}/admin/hubloc" method="post"> - <input type='hidden' name='form_security_token' value='{{$form_security_token}}'> - <table id='server'> <thead> <tr> @@ -14,9 +11,13 @@ {{foreach $hubloc as $hub}}<tr> <td>{{$hub.hubloc_id}}</td><td>{{$hub.hubloc_addr}}</td><td>{{$hub.hubloc_host}}</td><td>{{$hub.hubloc_status}}</td> - <td><input type="hidden" name="hublocid" value="{{$hub.hubloc_id}}"> + <td> + <form action="{{$baseurl}}/admin/hubloc" method="post"> + <input type="hidden" name="hublocid" value="{{$hub.hubloc_id}}"> + <input type='hidden' name='form_security_token' value='{{$form_security_token}}'> <input type="submit" name="check" value="check" > <input type="submit" name="repair" value="repair" ></td> + </form> </tr>{{/foreach}} </tbody> </table> |