From: Roland Häder Date: Thu, 24 Jun 2010 21:47:51 +0000 (+0000) Subject: Workaround for missing config entry, but this if-block should be moved into somewhere... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7ebada63469d2b812b359716774c17c60d669557;p=mailer.git Workaround for missing config entry, but this if-block should be moved into somewhere else --- diff --git a/inc/extensions/ext-bonus.php b/inc/extensions/ext-bonus.php index 6f6c007fe5..a5cf74ba55 100644 --- a/inc/extensions/ext-bonus.php +++ b/inc/extensions/ext-bonus.php @@ -570,7 +570,7 @@ WHERE `last_online` < ".$mark." ORDER BY `userid` ASC"); case 'init': // Do stuff when extension is initialized // Check for bonus rallye is active and send mails out - if ((getConfig('bonus_active') == 'Y') && (getConfig('bonus_new_member_notify') == 'Y')) { + if ((getExtensionVersion('bonus') >= '0.9.1') && (getConfig('bonus_active') == 'Y') && (getConfig('bonus_new_member_notify') == 'Y')) { // Include file for sending out mails addIncludeToPool('notify', 'inc/mails/bonus_mails.php'); } // END - if