diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-02-23 13:18:34 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-02-23 13:18:34 +0000 |
commit | cb2408a82c9bc93bef177dc33a8981bc36800839 (patch) | |
tree | 85728267a379dd1b39ac089ab2021f000e6cb668 /template | |
parent | 6f03e29735ea395f31d09bbfd15a4e15eaf961e3 (diff) |
Plugins:
- display author and and author url (if present) on plugin admin page
- uniformized versions/authors... for all plugins in svn
- security fix (html escape name, version, uri, author... to avoid javascript injection which could automatically simulate click on Install)
- added confirmation for install/uninstall plugins
Web services:
- web service explorer now caches method details in order to avoid unnecessary web calls
- web service explorer can now send parameters as arrays
- web service explorer uses now prototype.js version 1.5
- small improvements
- added and use function bad_request (sends http status code 400)
git-svn-id: http://piwigo.org/svn/trunk@1852 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/admin/plugins.tpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/template/yoga/admin/plugins.tpl b/template/yoga/admin/plugins.tpl index 00d344cac..370cd4141 100644 --- a/template/yoga/admin/plugins.tpl +++ b/template/yoga/admin/plugins.tpl @@ -19,7 +19,11 @@ <td>{plugins.plugin.DESCRIPTION}</td> <td> <!-- BEGIN action --> - <a href="{plugins.plugin.action.U_ACTION}" {TAG_INPUT_ENABLED}>{plugins.plugin.action.L_ACTION}</a> + <a href="{plugins.plugin.action.U_ACTION}" +<!-- BEGIN confirm --> + onclick="return confirm('Are you sure?');" +<!-- END confirm --> + {TAG_INPUT_ENABLED}>{plugins.plugin.action.L_ACTION}</a> <!-- END action --> </td> </tr> |