mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-14 16:44:39 +00:00
(plugins) fix tabs
This commit is contained in:
parent
eda621c577
commit
23ac5a28cc
@ -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();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user