summaryrefslogtreecommitdiffstats
path: root/apk-expert-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'apk-expert-html.lsp')
-rw-r--r--apk-expert-html.lsp10
1 files changed, 8 insertions, 2 deletions
diff --git a/apk-expert-html.lsp b/apk-expert-html.lsp
index 44b4b48..735d1a5 100644
--- a/apk-expert-html.lsp
+++ b/apk-expert-html.lsp
@@ -14,11 +14,17 @@ func(form, viewlibrary, page_info, session)
<DL>
<% if viewlibrary.check_permission("updateall") then %>
<DT>Update Index</DT>
- <DD><form action="updateall" method="POST"><input class="submit" type="submit" value="Update"></form></DD>
+ <DD><form action="updateall" method="POST">
+ <input class="hidden" type="hidden" name="redir" value="<%= html.html_escape(page_info.orig_action) %>" >
+ <input class="submit" type="submit" name="submit" value="Update">
+ </form></DD>
<% end %>
<% if viewlibrary.check_permission("upgradeall") then %>
<DT>Upgrade All</DT>
- <DD><form action="upgradeall" method="POST"><input class="submit" type="submit" value="Upgrade"></form></DD>
+ <DD><form action="upgradeall" method="POST">
+ <input class="hidden" type="hidden" name="redir" value="<%= html.html_escape(page_info.orig_action) %>" >
+ <input class="submit" type="submit" name="submit" value="Upgrade">
+ </form></DD>
<% end %>
</DL>
<% end %>