(plugins) fix tabs

This commit is contained in:
Ad Schellevis 2016-02-22 10:46:39 +01:00
parent eda621c577
commit 23ac5a28cc

View File

@ -54,7 +54,7 @@ function plugins_services()
$services = array();
foreach (plugin_scan() as $name => $path) {
require_once $path;
require_once $path;
$func = sprintf('%s_services', $name);
if (function_exists($func)) {
$workers = $func();
@ -70,7 +70,7 @@ function plugins_services()
function plugins_configure()
{
foreach (plugin_scan() as $name => $path) {
require_once $path;
require_once $path;
$func = sprintf('%s_configure', $name);
if (function_exists($func)) {
$workers = $func();