diff options
author | nicosomb <nicolas@loeuillet.org> | 2013-04-18 10:19:32 +0200 |
---|---|---|
committer | nicosomb <nicolas@loeuillet.org> | 2013-04-18 10:19:32 +0200 |
commit | 7312d15eaf0e9b4c0421552532d2cf57134e5d9a (patch) | |
tree | 129b192fcdb6a8825ef8e8c11283c2c62c829bf1 /tpl | |
parent | d06f30ef931402a1e56aab841ce852b3b81a9697 (diff) | |
download | wallabag-7312d15eaf0e9b4c0421552532d2cf57134e5d9a.tar.gz wallabag-7312d15eaf0e9b4c0421552532d2cf57134e5d9a.tar.zst wallabag-7312d15eaf0e9b4c0421552532d2cf57134e5d9a.zip |
Fixed #51 - redirection vers l'index quand on supprime depuis view
Diffstat (limited to 'tpl')
-rw-r--r-- | tpl/view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/view.html b/tpl/view.html index d24d26ed..3a1ba7c6 100644 --- a/tpl/view.html +++ b/tpl/view.html | |||
@@ -8,7 +8,7 @@ | |||
8 | <ul> | 8 | <ul> |
9 | <li><a title="toggle mark as read" class="tool archive {if="$is_read == '0'"}archive-off{/if}" onclick="toggle_archive(this, {$id}, '{$token}')"><span></span></a></li> | 9 | <li><a title="toggle mark as read" class="tool archive {if="$is_read == '0'"}archive-off{/if}" onclick="toggle_archive(this, {$id}, '{$token}')"><span></span></a></li> |
10 | <li><a title="toggle favorite" class="tool fav {if="$is_fav == '0'"}fav-off{/if}" onclick="toggle_favorite(this, {$id}, '{$token}')"><span></span></a></li> | 10 | <li><a title="toggle favorite" class="tool fav {if="$is_fav == '0'"}fav-off{/if}" onclick="toggle_favorite(this, {$id}, '{$token}')"><span></span></a></li> |
11 | <li><form method="post" onsubmit="return confirm('Are you sure?')" style="display: inline;"><input type="hidden" name="token" id="token" value="{$token}" /><input type="hidden" id="action" name="action" value="delete" /><input type="hidden" id="id" name="id" value="{$id}" /><input type="submit" class="delete" title="toggle delete" /></form></li> | 11 | <li><form method="post" onsubmit="return confirm('Are you sure?')" style="display: inline;" action="index.php"><input type="hidden" name="token" id="token" value="{$token}" /><input type="hidden" id="action" name="action" value="delete" /><input type="hidden" id="id" name="id" value="{$id}" /><input type="submit" class="delete" title="toggle delete" /></form></li> |
12 | </ul> | 12 | </ul> |
13 | </div> | 13 | </div> |
14 | <header class="mbm"> | 14 | <header class="mbm"> |