]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/filter/task/chat/class_ChatTaskHandlerInitializerFilter.php
Updated 'core'.
[hub.git] / application / hub / main / filter / task / chat / class_ChatTaskHandlerInitializerFilter.php
index 178f70743a4828d5bb11eefcc65e3cf3fa3d4ec8..85db533fb2ed28b4a7ab4c07525e048549cdf442 100644 (file)
@@ -61,6 +61,9 @@ class ChatTaskHandlerInitializerFilter extends BaseChatFilter implements Filtera
                // Get a new task handler instance
                $handlerInstance = ObjectFactory::createObjectByConfiguredName('task_handler_class');
 
+               // Put the task handler in registry
+               Registry::getRegistry()->addInstance('task_handler', $handlerInstance);
+
                /*
                 * Register all tasks:
                 *
@@ -68,9 +71,6 @@ class ChatTaskHandlerInitializerFilter extends BaseChatFilter implements Filtera
                 */
                $taskInstance = ObjectFactory::createObjectByConfiguredName('chat_telnet_listener_task_class');
                $handlerInstance->registerTask('chat_telnet_listener', $taskInstance);
-
-               // Put the task handler in registry
-               Registry::getRegistry()->addInstance('task_handler', $handlerInstance);
        }
 }