diff options
author | friendica <info@friendica.com> | 2012-02-25 13:00:44 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-25 13:00:44 -0800 |
commit | 579738aff77ed0aa6da853b479720be9ea4953d2 (patch) | |
tree | 1c41e35c693bfcfb27d3195826578a18de1fe7f3 | |
parent | 00edc89c4797934c4ec44c96fcddf2cea180601e (diff) | |
download | volse-hubzilla-579738aff77ed0aa6da853b479720be9ea4953d2.tar.gz volse-hubzilla-579738aff77ed0aa6da853b479720be9ea4953d2.tar.bz2 volse-hubzilla-579738aff77ed0aa6da853b479720be9ea4953d2.zip |
fixed link for toggling plugin from detail page
-rwxr-xr-x | boot.php | 2 | ||||
-rwxr-xr-x | mod/admin.php | 2 | ||||
-rwxr-xr-x | view/admin_plugins_details.tpl | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,7 @@ require_once('include/nav.php'); require_once('include/cache.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '2.3.1262' ); +define ( 'FRIENDICA_VERSION', '2.3.1263' ); define ( 'DFRN_PROTOCOL_VERSION', '2.22' ); define ( 'DB_UPDATE_VERSION', 1125 ); diff --git a/mod/admin.php b/mod/admin.php index 9073d079f..bcbf3e28f 100755 --- a/mod/admin.php +++ b/mod/admin.php @@ -573,7 +573,7 @@ function admin_page_plugins(&$a){ '$info' => get_plugin_info($plugin), '$admin_form' => $admin_form, - '$function' => $plugins, + '$function' => 'plugins', '$readme' => $readme )); } diff --git a/view/admin_plugins_details.tpl b/view/admin_plugins_details.tpl index 76ea73d4d..d7147b20b 100755 --- a/view/admin_plugins_details.tpl +++ b/view/admin_plugins_details.tpl @@ -13,7 +13,7 @@ {{ if $admin_form }} <h3>$settings</h3> - <form method="post" action="$baseurl/admin/plugins/$plugin/"> + <form method="post" action="$baseurl/admin/$function/$plugin/"> $admin_form </form> {{ endif }} |