Commit a670d1be authored by Ad Schellevis's avatar Ad Schellevis Committed by Franco Fichtner

(plugins) fix tabs

(cherry picked from commit 23ac5a28)
parent 87143152
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment