X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fwrapper-functions.php;h=0f89445a06222c3fcb2a83b573f2a24574efe6f9;hb=5f2dc5ad7c29069b55f17400e6c1c63bb89f7286;hp=882cd3aa9bd755a3a0554e4c3fc5dce28570aeb8;hpb=a2ca374f65976d21651fffb64a78d3a9678bb3b8;p=mailer.git diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index 882cd3aa9b..0f89445a06 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -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.'=>'.$version.'
'; 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.'<'.$version.'
'; return ((isExtensionInstalled($ext_name)) && (isExtensionOlder($ext_name, $version))); }