]> git.mxchange.org Git - mailer.git/blobdiff - inc/wrapper-functions.php
Several kinky code smoothed, fixes for admin login
[mailer.git] / inc / wrapper-functions.php
index 882cd3aa9bd755a3a0554e4c3fc5dce28570aeb8..0f89445a06222c3fcb2a83b573f2a24574efe6f9 100644 (file)
@@ -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)));
 }