X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Frallye_functions.php;h=ba5e615897a5565f36b1de50d56b0c150f664935;hb=be3bcf24cbb7277998a5c149308c9fb644c13ef5;hp=0744b6b32c535c3083d4084007623ebc4d669a5a;hpb=aa1fa67e62e0d175d5d801becaea4362a5b50e2a;p=mailer.git diff --git a/inc/libs/rallye_functions.php b/inc/libs/rallye_functions.php index 0744b6b32c..ba5e615897 100644 --- a/inc/libs/rallye_functions.php +++ b/inc/libs/rallye_functions.php @@ -86,7 +86,7 @@ function autostartReferalRallyes ($result) { // Check if line is already included... $result_ref = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `rallye_id`=%s AND `userid`=%s LIMIT 1", array(bigintval($id), bigintval($content['userid'])), __FUNCTION__, __LINE__); - if (SQL_NUMROWS($result_ref) == '0') { + if (SQL_NUMROWS($result_ref) == 0) { // Free memory SQL_FREERESULT($result_ref); @@ -320,7 +320,7 @@ function addUserToReferalRallye ($userid, $content = array()) { $add = ''; // Updated extension? - if (getExtensionVersion('rallye') >= '0.2.0') { + if (isExtensionInstalledAndNewer('rallye', '0.2.0')) { $add .= ", `min_users`, `min_prices`"; } // END - if @@ -340,7 +340,7 @@ LIMIT 1", __FUNCTION__, __LINE__); $min_users = '0'; $min_prices = '0'; // Load data - if (getExtensionVersion('rallye') >= '0.2.0') { + if (isExtensionInstalledAndNewer('rallye', '0.2.0')) { list($id, $title, $start, $end, $notify, $min_users, $min_prices) = SQL_FETCHROW($result); } else { list($id, $title, $start, $end, $notify) = SQL_FETCHROW($result); @@ -804,7 +804,7 @@ function addReferalRallyeTemplateSelection ($name = 'template', $default = '') { // function getReferalRallyeRefsCount ($userid, $old = '0') { // Check current refs - if (getExtensionVersion('cache') >= '0.1.2') { + if (isExtensionInstalledAndNewer('cache', '0.1.2')) { // Get refs from cache $cnt = '0'; foreach ($GLOBALS['cache_array']['refsystem']['userid'] as $id => $userid) {