diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-08-15 17:43:07 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-08-15 17:43:07 +0000 |
commit | c43001a6db61bf17cb56a36010956dc9eeced80d (patch) | |
tree | 9721c5c94b68f6db922579f4301adc082d92a095 /weblog-listsources-html.lsp | |
parent | 2f7c6b911158e867fab6a7792559f59738d341db (diff) | |
download | acf-weblog-c43001a6db61bf17cb56a36010956dc9eeced80d.tar.bz2 acf-weblog-c43001a6db61bf17cb56a36010956dc9eeced80d.tar.xz |
Removed calls to redirect_to_referrer
Diffstat (limited to 'weblog-listsources-html.lsp')
-rw-r--r-- | weblog-listsources-html.lsp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/weblog-listsources-html.lsp b/weblog-listsources-html.lsp index f1a91b4..fd14492 100644 --- a/weblog-listsources-html.lsp +++ b/weblog-listsources-html.lsp @@ -20,8 +20,8 @@ require("htmlviewfunctions") <TR> <TD style="padding-right:20px;white-space:nowrap;"> <%= html.link{value = "editsource?sourcename=" .. source.sourcename.."&redir="..page_info.orig_action, label="Edit "} %> - <%= html.link{value = "deletesource?sourcename=" .. source.sourcename, label="Delete "} %> - <%= html.link{value = "testsource?sourcename=" .. source.sourcename, label="Test "} %> + <%= html.link{value = "deletesource?submit=true&sourcename=" .. source.sourcename, label="Delete "} %> + <%= html.link{value = "testsource?submit=true&sourcename=" .. source.sourcename, label="Test "} %> </TD> <TD style="padding-right:20px;white-space:nowrap;"><%= html.html_escape(source.sourcename) %></TD> <TD style="padding-right:20px;white-space:nowrap;"><%= html.html_escape(tostring(source.enabled)) %></TD> @@ -47,6 +47,6 @@ require("htmlviewfunctions") <form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/importlogs") %>"> <DT>Import Logs</DT> -<DD><input class="submit" type="submit" value="Import"></DD> +<DD><input class="submit" type="submit" name="submit" value="Import"></DD> </form> </DL> |