diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-04-20 05:52:08 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-04-20 05:52:08 -0400 |
commit | 1c88a7ef5ded0a5e58a554482d2c1fbeb78c2ef0 (patch) | |
tree | a5646997bfa930bc7e15db200b5de4e2eacc44b1 /view/admin_plugins.tpl | |
parent | 83683b516ec058d0e5fdd0d4a1defbd22a60c322 (diff) | |
parent | 3bb785fdad0b1636ac5094a051e291b0f33e0f45 (diff) | |
download | volse-hubzilla-1c88a7ef5ded0a5e58a554482d2c1fbeb78c2ef0.tar.gz volse-hubzilla-1c88a7ef5ded0a5e58a554482d2c1fbeb78c2ef0.tar.bz2 volse-hubzilla-1c88a7ef5ded0a5e58a554482d2c1fbeb78c2ef0.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
XSRF protection and PHPdoc for mod/admin.php
XSRF protection and PHPdoc for mod/admin.php
* master:
Diffstat (limited to 'view/admin_plugins.tpl')
-rw-r--r-- | view/admin_plugins.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/admin_plugins.tpl b/view/admin_plugins.tpl index 8367ff6a1..74b56bb4e 100644 --- a/view/admin_plugins.tpl +++ b/view/admin_plugins.tpl @@ -4,7 +4,7 @@ <ul id='pluginslist'> {{ for $plugins as $p }} <li class='plugin $p.1'> - <a class='toggleplugin' href='$baseurl/admin/$function/$p.0?a=t' title="{{if $p.1==on }}Disable{{ else }}Enable{{ endif }}" ><span class='icon $p.1'></span></a> + <a class='toggleplugin' href='$baseurl/admin/$function/$p.0?a=t&t=$form_security_token' title="{{if $p.1==on }}Disable{{ else }}Enable{{ endif }}" ><span class='icon $p.1'></span></a> <a href='$baseurl/admin/$function/$p.0'><span class='name'>$p.2.name</span></a> - <span class="version">$p.2.version</span> {{ if $p.2.experimental }} $experimental {{ endif }}{{ if $p.2.unsupported }} $unsupported {{ endif }} |