X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-rallyes.php;h=5d4a105622f14041f76e75eca67c3cfff0285c9c;hb=22ba710434fb8b31e8961976ee4a31ae28b4509d;hp=31dc59992a35be5bd4d89dd4938599a493a6255d;hpb=e8ce566b7f77e4f96fa8a6d6ced4b8f5053c447a;p=mailer.git diff --git a/inc/modules/guest/what-rallyes.php b/inc/modules/guest/what-rallyes.php index 31dc59992a..5d4a105622 100644 --- a/inc/modules/guest/what-rallyes.php +++ b/inc/modules/guest/what-rallyes.php @@ -1,7 +1,7 @@ '); // Check for possible running rallyes -$ADMIN = " AND d.is_active='Y'"; -if (isAdmin()) $ADMIN = ''; +$ADD = " AND d.is_active='Y'"; +if (isAdmin()) $ADD = ''; $result = SQL_QUERY("SELECT d.id, d.admin_id, a.login, d.title, d.descr, d.template, d.start_time, d.end_time, d.min_users, d.min_prices @@ -65,7 +64,7 @@ INNER JOIN ON d.admin_id=a.id WHERE - d.notified='Y'".$ADMIN." + d.notified='Y'" . $ADD . " ORDER BY d.end_time LIMIT 1", __FILE__, __LINE__); @@ -77,17 +76,17 @@ if (SQL_NUMROWS($result) == 1) { $expired = false; if ($end < time()) { // Rallye is expired - $content['extras'] = getMessage('RALLYE_HAS_EXPIRED'); + $content['extras'] = '{--RALLYE_HAS_EXPIRED--}'; $expired = true; - } elseif (time() >= ($end - getConfig('ONE_DAY'))) { + } elseif (time() >= ($end - getOneDay())) { // Rallye will expire in less one day! - $content['extras'] = getMessage('RALLYE_EXPIRE_ONE_DAY'); + $content['extras'] = '{--RALLYE_EXPIRE_ONE_DAY--}'; } else { - $content['extras'] = "{--RALLYE_REGISTER_NOW--}"; + $content['extras'] = '{--RALLYE_REGISTER_NOW--}'; } // Set admin line (currently set to impressum, later to contact form) - // @TODO Reactivate this: $content['admin'] = "".$login.""; + // @TODO Reactivate this: $content['admin'] = '' . $login . ''; // Set title $content['title'] = $title; @@ -113,12 +112,12 @@ if (SQL_NUMROWS($result) == 1) { if ($expired === true) { $content['prices'] = addReferalRallyeWinners($id); - $content['top_users'] = "
".$content['extras']."
"; - $content['can_win_this'] = getMessage('RALLYE_OUR_WINNERS_ARE'); + $content['top_users'] = '
' . $content['extras'] . '
'; + $content['can_win_this'] = '{--RALLYE_OUR_WINNERS_ARE--}'; } else { $content['prices'] = addReferalRallyePrices($id, 'html'); $content['top_users'] = addReferalRallyeTopUsers($id, getMemberId()); - $content['can_win_this'] = getMessage('RALLYE_YOU_CAN_WIN'); + $content['can_win_this'] = '{--RALLYE_YOU_CAN_WIN--}'; } // And load final template