From e097adc783f4d8a005cd2e65525eccb444f7e73f Mon Sep 17 00:00:00 2001 From: mdipierro Date: Sun, 19 Aug 2012 15:11:04 -0500 Subject: [PATCH] fixed problem with plugin delete, thanks Alan --- VERSION | 2 +- applications/admin/views/default/plugin.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 2aca0485..abf6ec6a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-08-19 15:02:35) dev +Version 2.00.0 (2012-08-19 15:11:01) dev diff --git a/applications/admin/views/default/plugin.html b/applications/admin/views/default/plugin.html index 49d328e7..ff72d4a2 100644 --- a/applications/admin/views/default/plugin.html +++ b/applications/admin/views/default/plugin.html @@ -29,7 +29,7 @@ def file_create_form(location): INPUT(_type="submit",_value=T("submit")),_action=URL('create_file')) return form def deletefile(arglist): - return A(TAG[''](IMG(_src=URL('static', 'images/delete_icon.png')), SPAN(T('Delete this file (you will be asked to confirm deletion)'))), _class='icon delete tooltip', _href=URL('delete',args=arglist,vars=dict(sender=request.function+'/'+app))) + return A(TAG[''](IMG(_src=URL('static', 'images/delete_icon.png')), SPAN(T('Delete this file (you will be asked to confirm deletion)'))), _class='icon delete tooltip', _href=URL('delete',args=arglist,vars=dict(sender=request.function+'/'+app+'/'+request.args[1]))) }} {{block sectionclass}}plugin{{end}}