Its a little bug?
Show in File:
/app/loader.php
from line 717
[CODE lang="php" title="/app/loader.php"] if (getSetting('enable_plugin_route')) {
$plugin_page = [
'type' => 'link',
'link_url' => G\get_base_url('plugin'),
'icon' => 'icon-code2',
'title' => _s('Plugin'),
'is_active' => 1,
'is_link_visible' => 1,
];
Page::fill($plugin_page);
array_unshift($pages_visible, $plugin_page);
}[/CODE]
Replace it with
[CODE lang="php" title="/app/loader.php" highlight="9"] if (getSetting('enable_plugin_route')) {
$plugin_page = [
'type' => 'link',
'link_url' => G\get_base_url('plugin'),
'icon' => 'icon-code2',
'title' => _s('Plugin'),
'is_active' => 1,
'is_link_visible' => 1,
'attr_target' => '_self',
];
Page::fill($plugin_page);
array_unshift($pages_visible, $plugin_page);
}[/CODE]
But after the next update of the script it can be, if
@Rodolfo does not insert this itself, that the changes made by you have disappeared.