]> git.mxchange.org Git - mailer.git/commitdiff
Fix for no longer working extension registration
authorRoland Häder <roland@mxchange.org>
Mon, 23 Aug 2010 13:46:59 +0000 (13:46 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 23 Aug 2010 13:46:59 +0000 (13:46 +0000)
inc/extensions-functions.php
inc/filters.php

index 5ceb349621c21cb4cf47e413fcf80bc05385b428..6948e9b74a1369d1817c532b338aa409343a044a 100644 (file)
@@ -245,7 +245,7 @@ function registerExtension ($ext_name, $taskId, $dry_run = false, $logout = true
 
        // Does this extension exists?
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'currName=' . getCurrentExtensionName());
-       if (loadExtension(getCurrentExtensionName(), 'register', '', isExtensionDryRun())) {
+       if (loadExtension(getCurrentExtensionName(), 'register', '0.0', isExtensionDryRun())) {
                // Set current extension name again
                setCurrentExtensionName($ext_name);
 
@@ -458,7 +458,7 @@ function doExtensionSqls ($ext_id, $load_mode) {
 
        // Load extension in detected mode
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ext_name[' . $ext_id . ']=' . getCurrentExtensionName() . ',load_mode=' . $load_mode);
-       loadExtension(getCurrentExtensionName(), $load_mode, '', false);
+       loadExtension(getCurrentExtensionName(), $load_mode, '0.0', false);
 
        // Init these SQLs
        initSqls();
index 9b9bb0e3e989ac5672bc47aeb2a77e6a014e5639..2a11b82da0c121311e25cf6a305aeaf741d82578 100644 (file)
@@ -523,7 +523,7 @@ function FILTER_COMPILE_EXPRESSION_CODE ($code) {
                                $code = call_user_func($commandFunction, $data);
                        } else {
                                // Unsupported command detected
-                               debug_report_bug(__FUNCTION__, __LINE__, 'Command=' . $cmd . ', callback=' . $callback . ', extra=' . $extraFunction . ' is unsupported.');
+                               logDebugMessage(__FUNCTION__, __LINE__, 'Command=' . $cmd . ', callback=' . $callback . ', extra=' . $extraFunction . ' is unsupported.');
                        }
                } // END - foreach
        } // END - if