Large code cleanups:
[mailer.git] / inc / modules / member / what-rallyes.php
index 3bc862d204324e17f7eeff7cd683523c347ca852..4ecc3cca97e98a874dfa3f44dfa226028c1c034e 100644 (file)
@@ -81,8 +81,8 @@ if (SQL_NUMROWS($result) == 1) {
                // Rallye will expire in less one day!
                $content['extras'] = '{--RALLYE_EXPIRE_ONE_DAY--}';
        } else {
-               // Link to referal links page
-               $content['extras'] = '<a href="{%url=modules.php?module=login&amp;what=reflinks%}">{--RALLYE_GET_REFERAL_LINK--}</a>';
+               // Link to referral links page
+               $content['extras'] = '<a href="{%url=modules.php?module=login&amp;what=reflinks%}">{--RALLYE_GET_REFERRAL_LINK--}</a>';
        }
 
        // Set admin line (currently set to impressum, later to contact form)
@@ -95,20 +95,20 @@ if (SQL_NUMROWS($result) == 1) {
        } // END - if
 
        // Determine min_users/prices
-       $content['min_users']  = determineReferalRallyeMinimumUsers($content['min_users']);
-       $content['min_prices'] = determineReferalRallyeMinimumPrices($content['min_prices']);
+       $content['min_users']  = determineReferralRallyeMinimumUsers($content['min_users']);
+       $content['min_prices'] = determineReferralRallyeMinimumPrices($content['min_prices']);
 
        // Set start and end time
        $content['start'] = generateDateTime($content['start_time'], 1);
        $content['end']   = generateDateTime($content['end_time']  , 1);
 
        if ($expired === true) {
-               $content['prices']       = addReferalRallyeWinners('member', $content['id']);
+               $content['prices']       = addReferralRallyeWinners('member', $content['id']);
                $content['top_users']    = '<div align="center" class="big">' . $content['extras'] . '</div>';
                $content['can_win_this'] = '{--RALLYE_OUR_WINNERS_ARE--}';
        } else {
-               $content['prices']       = addReferalRallyePrices($content['id'], 'html');
-               $content['top_users']    = addReferalRallyeTopUsers('member', $content['id'], getMemberId());
+               $content['prices']       = addReferralRallyePrices($content['id'], 'html');
+               $content['top_users']    = addReferralRallyeTopUsers('member', $content['id'], getMemberId());
                $content['can_win_this'] = '{--RALLYE_YOU_CAN_WIN--}';
        }