]> git.mxchange.org Git - mailer.git/blobdiff - inc/wrapper-functions.php
Menu moved to extension, index_delay should not have UNSIGNED
[mailer.git] / inc / wrapper-functions.php
index 882cd3aa9bd755a3a0554e4c3fc5dce28570aeb8..c7711857d65a7010d4f249c7e64b5e3320931989 100644 (file)
@@ -566,7 +566,7 @@ function isModuleSet ($abortOnMiss =  false) {
        // Should we abort here?
        if (($abortOnMiss === true) && ($isset === false)) {
                // Output backtrace
-               print '<pre>';
+               print 'Module not set!<pre>';
                debug_print_backtrace();
                die('</pre');
                debug_report_bug('module is empty.');
@@ -646,12 +646,14 @@ function redirectToIndexMemberOnlyModule () {
 // Wrapper function for checking if extension is installed and newer or same version
 function isExtensionInstalledAndNewer ($ext_name, $version) {
        // Return it
+       //* DEBUG: */ print __FUNCTION__.':'.$ext_name.'=&gt;'.$version.'<br />';
        return ((isExtensionInstalled($ext_name)) && (getExtensionVersion($ext_name) >= $version));
 }
 
 // Wrapper function for checking if extension is installed and older than given version
 function isExtensionInstalledAndOlder ($ext_name, $version) {
        // Return it
+       //* DEBUG: */ print __FUNCTION__.':'.$ext_name.'&lt;'.$version.'<br />';
        return ((isExtensionInstalled($ext_name)) && (isExtensionOlder($ext_name, $version)));
 }