diff --git a/bl-kernel/boot/rules/60.plugins.php b/bl-kernel/boot/rules/60.plugins.php index 5d12ccd4..56185c88 100644 --- a/bl-kernel/boot/rules/60.plugins.php +++ b/bl-kernel/boot/rules/60.plugins.php @@ -103,6 +103,10 @@ function buildPlugins() if (method_exists($Plugin, $event)) { array_push($plugins[$event], $Plugin); } + + if (method_exists($Plugin, "requests")) { + call_user_func(array($Plugin, "requests")); + } } }