mirror of
https://github.com/friendica/friendica
synced 2024-11-09 15:42:55 +00:00
fixed link for toggling plugin from detail page
This commit is contained in:
parent
00edc89c47
commit
579738aff7
3 changed files with 3 additions and 3 deletions
2
boot.php
2
boot.php
|
@ -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 );
|
||||
|
||||
|
|
|
@ -573,7 +573,7 @@ function admin_page_plugins(&$a){
|
|||
'$info' => get_plugin_info($plugin),
|
||||
|
||||
'$admin_form' => $admin_form,
|
||||
'$function' => $plugins,
|
||||
'$function' => 'plugins',
|
||||
'$readme' => $readme
|
||||
));
|
||||
}
|
||||
|
|
|
@ -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 }}
|
||||
|
|
Loading…
Reference in a new issue