X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_rallyes.php;h=e29a0d774b3da2e470af64f66398708d8400d6d3;hp=18be1d8cc0d04711072bad6c963dcbe24e7a89d2;hb=f3e4c2c048761589836fdbe6bd2e46599a1833a7;hpb=cca98f57dff720b174d21d071cee8303462485d7 diff --git a/inc/modules/admin/what-list_rallyes.php b/inc/modules/admin/what-list_rallyes.php index 18be1d8cc0..e29a0d774b 100644 --- a/inc/modules/admin/what-list_rallyes.php +++ b/inc/modules/admin/what-list_rallyes.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Bestehende Rallyes auflisten * * -------------------------------------------------------------------- * - * * + * $Revision:: 856 $ * + * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: stelzi $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -40,109 +45,99 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { // Add description as navigation point ADD_DESCR("admin", __FILE__); -if (empty($_GET['sub'])) $_GET['sub'] = ""; +if (!REQUEST_ISSET_GET(('sub'))) REQUEST_SET_GET('sub', ""); $MSG = ""; // Quick actions on a rallye -if (isset($_GET['rallye'])) -{ - // Activate / deactivate - $SQL = ""; - if (isset($_GET['activate'])) - { - switch ($_GET['activate']) +if (REQUEST_ISSET_GET(('rallye'))) { + // Init SQL queries + INIT_SQLS(); + + if (REQUEST_ISSET_GET(('activate'))) { + // Activate / deactivate + switch (REQUEST_GET('activate')) { case "1": // Activate - $SQL = "UPDATE `{!MYSQL_PREFIX!}_rallye_data` SET is_active='Y' WHERE id=%s AND is_active='N' LIMIT 1"; + ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET is_active='Y' WHERE id=%s AND is_active='N' LIMIT 1"); break; case "0": // Deactivate - $SQL = "UPDATE `{!MYSQL_PREFIX!}_rallye_data` SET is_active='N' WHERE id=%s AND is_active='Y' LIMIT 1"; + ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET is_active='N' WHERE id=%s AND is_active='Y' LIMIT 1"); break; } - } - - // Automatic notification - if (isset($_GET['notify'])) - { - switch ($_GET['notify']) + } elseif (REQUEST_ISSET_GET(('notify'))) { + // Automatic notification + switch (REQUEST_GET('notify')) { case "1": // Activate - $SQL = "UPDATE `{!MYSQL_PREFIX!}_rallye_data` SET send_notify='Y' WHERE id=%s AND send_notify='N' LIMIT 1"; + ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET send_notify='Y' WHERE id=%s AND send_notify='N' LIMIT 1"); break; case "0": // Deactivate - $SQL = "UPDATE `{!MYSQL_PREFIX!}_rallye_data` SET send_notify='N' WHERE id=%s AND send_notify='Y' LIMIT 1"; + ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET send_notify='N' WHERE id=%s AND send_notify='Y' LIMIT 1"); break; } - } - - // Automatic adding of new members - if (isset($_GET['auto'])) - { - switch ($_GET['auto']) + } elseif (REQUEST_ISSET_GET(('auto'))) { + // Automatic adding of new members + switch (REQUEST_GET('auto')) { case "1": // Activate - $SQL = "UPDATE `{!MYSQL_PREFIX!}_rallye_data` SET auto_add_new_user='Y' WHERE id=%s AND auto_add_new_user='N' LIMIT 1"; + ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET auto_add_new_user='Y' WHERE id=%s AND auto_add_new_user='N' LIMIT 1"); break; case "0": // Deactivate - $SQL = "UPDATE `{!MYSQL_PREFIX!}_rallye_data` SET auto_add_new_user='N' WHERE id=%s AND auto_add_new_user='Y' LIMIT 1"; + ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET auto_add_new_user='N' WHERE id=%s AND auto_add_new_user='Y' LIMIT 1"); break; } } // Run SQL command - if (!empty($SQL)) - { - $result = SQL_QUERY_ESC($SQL, array(bigintval($_GET['rallye'])), __FILE__, __LINE__); - } -} - elseif (isset($_POST['remove'])) -{ + runFilterChain('run_sqls'); +} elseif (REQUEST_ISSET_POST(('remove'))) { // Delete rallyes - $SEL = SELECTION_COUNT($_POST['sel']); - if ($SEL > 0) - { + $SEL = SELECTION_COUNT(REQUEST_POST('sel')); + if ($SEL > 0) { + // Init SQLs + INIT_SQLS(); + // Delete selected rallyes and all it's data - foreach ($_POST['sel'] as $id => $sel) - { + foreach (REQUEST_POST('sel') as $id => $selected) { // Remove selected rallye entirely... - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!MYSQL_PREFIX!}_rallye_data` WHERE id=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!MYSQL_PREFIX!}_rallye_prices` WHERE rallye_id=%s", - array(bigintval($id)), __FILE__, __LINE__); - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!MYSQL_PREFIX!}_rallye_users` WHERE rallye_id=%s", - array(bigintval($id)), __FILE__, __LINE__); - } + ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_rallye_data` WHERE id=%s LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__, false)); + ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_rallye_prices` WHERE rallye_id=%s", + array(bigintval($id)), __FILE__, __LINE__, false)); + ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_rallye_users` WHERE rallye_id=%s", + array(bigintval($id)), __FILE__, __LINE__, false)); + } // END - foreach + + // Run SQLS + runFilterChain('run_sqls'); // Output message - $MSG = RALLYE_DELETED; - } - else - { + $MSG = getMessage('RALLYE_DELETED'); + } else { // No rallye selected to delete! - $MSG = RALLYE_DELETE_NOTHING_SELECTED; + $MSG = getMessage('RALLYE_DELETE_NOTHING_SELECTED'); } -} - elseif (isset($_POST['change'])) -{ +} elseif (REQUEST_ISSET_POST(('change'))) { // Change rallye - $SEL = SELECTION_COUNT($_POST['title']); - if ($SEL > 0) - { + $SEL = SELECTION_COUNT(REQUEST_POST('title')); + if ($SEL > 0) { + // Init SQLs + INIT_SQLS(); + // Change selected rallyes and all it's data - foreach ($_POST['title'] as $id => $title) - { + foreach (REQUEST_POST('title') as $id => $title) { // Secure ID number $id = bigintval($id); // Generate timestamps - $START = mktime($_POST['start_hour'][$id], $_POST['start_min'][$id], $_POST['start_sec'][$id], $_POST['start_month'][$id], $_POST['start_day'][$id], $_POST['start_year'][$id]); - $END = mktime($_POST['end_hour'][$id] , $_POST['end_min'][$id] , $_POST['end_sec'][$id] , $_POST['end_month'][$id] , $_POST['end_day'][$id] , $_POST['end_year'][$id] ); + $START = mktime(REQUEST_POST('start_hour', $id), REQUEST_POST('start_min', $id), REQUEST_POST('start_sec', $id), REQUEST_POST('start_month', $id), REQUEST_POST('start_day', $id), REQUEST_POST('start_year', $id)); + $END = mktime(REQUEST_POST('end_hour', $id) , REQUEST_POST('end_min', $id) , REQUEST_POST('end_sec', $id) , REQUEST_POST('end_month', $id) , REQUEST_POST('end_day', $id) , REQUEST_POST('end_year', $id) ); // Update entry - SQL_QUERY_ESC("UPDATE `{!MYSQL_PREFIX!}_rallye_data` SET + ADD_SQL(SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_rallye_data` SET title='%s', descr='%s', template='%s', @@ -151,55 +146,65 @@ end_time='%s', min_users='%s', min_prices='%s' WHERE id='".$id."' LIMIT 1", - array($title, $_POST['descr'][$id], $_POST['templ'][$id], bigintval($START), bigintval($END), bigintval($_POST['min_users'][$id]), bigintval($_POST['min_prices'][$id]), $id), - __FILE__, __LINE__); + array( + $title, + REQUEST_POST('descr', $id), + REQUEST_POST('templ', $id), + bigintval($START), + bigintval($END), + bigintval(REQUEST_POST('min_users', $id)), + bigintval(REQUEST_POST('min_prices', $id)), + $id + ), __FILE__, __LINE__, false)); } + // Run SQLS + runFilterChain('run_sqls'); + // Output message - $MSG = RALLYE_CHANGED; + $MSG = getMessage('RALLYE_CHANGED'); } } -if (isset($_POST['edit'])) -{ +if (REQUEST_ISSET_POST('edit')) { // Check for selections - $SEL = SELECTION_COUNT($_POST['sel']); - if ($SEL > 0) - { + $SEL = SELECTION_COUNT(REQUEST_POST('sel')); + if ($SEL > 0) { // Make all selected and deactivated rallyes editable - $SW = 2; $OUT = ""; - foreach ($_POST['sel'] as $id => $sel) - { + $OUT = ""; $SW = 2; + foreach (REQUEST_POST('sel') as $id => $selected) { // Load rallye basic data - $result = SQL_QUERY_ESC("SELECT title, descr, template, start_time, end_time, min_users, min_prices FROM `{!MYSQL_PREFIX!}_rallye_data` WHERE id=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); - list($title, $descr, $templ, $start, $end, $min_users, $min_prices) = SQL_FETCHROW($result); + $result = SQL_QUERY_ESC("SELECT title, descr, template, start_time, end_time, min_users, min_prices +FROM `{!_MYSQL_PREFIX!}_rallye_data` +WHERE `id`=%s +LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__); + // Fetch an array + $content = SQL_FETCHARRAY($result); + + // Free result SQL_FREERESULT($result); // Starting day - $content['s_sec'] = ADD_SELECTION("sec" , date("s", $start), "start", $id); - $content['s_min'] = ADD_SELECTION("min" , date("i", $start), "start", $id); - $content['s_hour'] = ADD_SELECTION("hour" , date("G", $start), "start", $id); - $content['s_day'] = ADD_SELECTION("day" , date("d", $start), "start", $id); - $content['s_month'] = ADD_SELECTION("month", date("m", $start), "start", $id); - $content['s_year'] = ADD_SELECTION("year" , date('Y', $start), "start", $id); + $content['s_sec'] = ADD_SELECTION("sec" , date("s", $content['start_time']), "start", $id); + $content['s_min'] = ADD_SELECTION("min" , date("i", $content['start_time']), "start", $id); + $content['s_hour'] = ADD_SELECTION("hour" , date("G", $content['start_time']), "start", $id); + $content['s_day'] = ADD_SELECTION("day" , date("d", $content['start_time']), "start", $id); + $content['s_month'] = ADD_SELECTION("month", date("m", $content['start_time']), "start", $id); + $content['s_year'] = ADD_SELECTION("year" , date('Y', $content['start_time']), "start", $id); // Ending day - $content['e_sec'] = ADD_SELECTION("sec" , date("s", $end) , "end" , $id); - $content['e_min'] = ADD_SELECTION("min" , date("i", $end) , "end" , $id); - $content['e_hour'] = ADD_SELECTION("hour" , date("G", $end) , "end" , $id); - $content['e_day'] = ADD_SELECTION("day" , date("d", $end) , "end" , $id); - $content['e_month'] = ADD_SELECTION("month", date("m", $end) , "end" , $id); - $content['e_year'] = ADD_SELECTION("year" , date('Y', $end) , "end" , $id); - - // Remember over values - $content['templ'] = RALLYE_TEMPLATE_SELECTION("templ[".$id."]", $templ); + $content['e_sec'] = ADD_SELECTION("sec" , date("s", $content['end_time']) , "end" , $id); + $content['e_min'] = ADD_SELECTION("min" , date("i", $content['end_time']) , "end" , $id); + $content['e_hour'] = ADD_SELECTION("hour" , date("G", $content['end_time']) , "end" , $id); + $content['e_day'] = ADD_SELECTION("day" , date("d", $content['end_time']) , "end" , $id); + $content['e_month'] = ADD_SELECTION("month", date("m", $content['end_time']) , "end" , $id); + $content['e_year'] = ADD_SELECTION("year" , date('Y', $content['end_time']) , "end" , $id); + + // Remember other values + $content['templ'] = RALLYE_TEMPLATE_SELECTION("templ[".$id."]", $content['template']); $content['sw'] = $SW; $content['id'] = $id; - $content['title'] = $title; - $content['descr'] = $descr; - $content['min_users'] = $min_users; - $content['min_prices'] = $min_prices; // Output row $OUT .= LOAD_TEMPLATE("admin_edit_rallyes_row", true, $content); @@ -207,56 +212,61 @@ if (isset($_POST['edit'])) // Color switching $SW = 3 - $SW; } + // Remember rows in constant define('__RALLYE_ROWS', $OUT); // Load final template LOAD_TEMPLATE("admin_edit_rallyes"); - } - else - { + } else { // Nothing selected to edit LOAD_TEMPLATE("admin_settings_saved", false, LOAD_TEMPLATE("admin_list_rallye_noselect", true)); } -} elseif (($_GET['sub'] == "users") && ($_GET['rallye'] > 0)) { +} elseif ((REQUEST_GET('sub') == "users") && (REQUEST_GET('rallye') > 0)) { // List users and their refs before start and current - $result = SQL_QUERY_ESC("SELECT userid, refs, curr_points FROM `{!MYSQL_PREFIX!}_rallye_users` WHERE rallye_id=%s ORDER BY userid", - array(bigintval($_GET['rallye'])), __FILE__, __LINE__); - if (SQL_NUMROWS($result) > 0) - { - $SW = 2; $OUT = ""; - define('__RALLYE_VALUE', $_GET['rallye']); - while (list($uid, $old, $opoints) = SQL_FETCHROW($result)) - { + $result = SQL_QUERY_ESC("SELECT userid, refs, curr_points FROM `{!_MYSQL_PREFIX!}_rallye_users` WHERE rallye_id=%s ORDER BY userid", + array(bigintval(REQUEST_GET('rallye'))), __FILE__, __LINE__); + if (SQL_NUMROWS($result) > 0) { + $OUT = ""; $SW = 2; + // @TODO Rewrite this constant + define('__RALLYE_VALUE', REQUEST_GET('rallye')); + while ($content = SQL_FETCHARRAY($result)) { // Check for referal count - $cnt = RALLYE_GET_REFCOUNT($uid, $old); + $cnt = RALLYE_GET_REFCOUNT($content['userid'], $content['refs']); + + // Init variables + $bl = ""; + $br = ""; // Output row - $Bl = ""; $Br = ""; - if (($opoints > 0) && ($cnt > 0)) { $Bl = ""; $Br = ""; } - if (($old > 0) || ($cnt > 0)) - { + if (($content['curr_points'] > 0) && ($cnt > 0)) { $bl = ""; $br = ""; } + if (($content['refs'] > 0) || ($cnt > 0)) { // Insert link to referal list - //* DEBUG: */ echo "-".$uid."/".$cnt."/".$old."-
"; - $cnt = ADMIN_USER_PROFILE_LINK($uid, $cnt, "list_refs"); - $old = ADMIN_USER_PROFILE_LINK($uid, $old, "list_refs"); - } + //* DEBUG: */ echo "-".$content['userid']."/".$cnt."/".$content['refs']."-
"; + $cnt = ADMIN_USER_PROFILE_LINK($content['userid'], $cnt, "list_refs"); + $content['refs'] = ADMIN_USER_PROFILE_LINK($content['userid'], $content['refs'], "list_refs"); + } // END - if // Get user points - $points = GET_TOTAL_DATA($uid, "user_points", "points", "userid", false, " AND ref_depth=1 LIMIT 1"); - //* DEBUG: */ echo basename(__FILE__).":uid={$uid},points={$points},opoints={$opoints}
\n"; + $points = GET_TOTAL_DATA($content['userid'], "user_points", "points", "userid", false, " AND ref_depth=1 LIMIT 1"); + //* DEBUG: */ echo basename(__FILE__).":uid={$content['userid']},points={$points},opoints={$content['curr_points']}
\n"; + + // Prepare content + // @TODO Rewritings: uid->userid,opoints->curr_points,old->refs in template $content = array( 'sw' => $SW , - 'uid' => $uid, - 'bold_l' => $Bl , - 'bold_r' => $Br , - 'old' => $old, + 'uid' => $content['userid'], + 'bold_l' => $bl , + 'bold_r' => $br , + 'old' => $content['refs'], 'cnt' => $cnt, - 'opoints' => TRANSLATE_COMMA($points - $opoints), + 'opoints' => TRANSLATE_COMMA($points - $content['curr_points']), ); + + // Load row template and switch color $OUT .= LOAD_TEMPLATE("admin_list_rallye_usr_row", true, $content); $SW = 3 - $SW; - } + } // END - while // Free memory SQL_FREERESULT($result); @@ -264,117 +274,101 @@ if (isset($_POST['edit'])) // Load template LOAD_TEMPLATE("admin_list_rallye_usr"); - } - else - { + } else { // No entries found? - LOAD_TEMPLATE("admin_settings_saved", false, RALLYE_ADMIN_USERS_404); + LOAD_TEMPLATE("admin_settings_saved", false, getMessage('RALLYE_ADMIN_USERS_404')); } -} - else -{ +} else { // Start listing rallyes $result = SQL_QUERY("SELECT id, admin_id, title, descr, template, start_time, end_time, auto_add_new_user, is_active, send_notify, notified, min_users, min_prices -FROM `{!MYSQL_PREFIX!}_rallye_data` +FROM `{!_MYSQL_PREFIX!}_rallye_data` ORDER BY start_time DESC", - __FILE__, __LINE__); - if (SQL_NUMROWS($result) > 0) - { + __FILE__, __LINE__); + if (SQL_NUMROWS($result) > 0) { // List found rallyes - $SW = 2; $OUT = ""; - while (list($id, $aid, $title, $descr, $templ, $start, $end, $auto_add, $active, $notify, $notified, $min_users, $min_prices) = SQL_FETCHROW($result)) - { + $OUT = ""; $SW = 2; + while ($content = SQL_FETCHARRAY($result)) { // Load admin login - $alogin = GET_ADMIN_LOGIN($aid); - - // Count assigned prices - $result_prices = SQL_QUERY_ESC("SELECT id FROM `{!MYSQL_PREFIX!}_rallye_prices` WHERE rallye_id=%s", - array(bigintval($id)), __FILE__, __LINE__); + $content['alogin'] = GET_ADMIN_LOGIN($content['admin_id']); // Count joined userids - $result_user = SQL_QUERY_ESC("SELECT id FROM `{!MYSQL_PREFIX!}_rallye_users` WHERE rallye_id=%s", - array($id), __FILE__, __LINE__); - $joined = SQL_NUMROWS($result_user); + $joined = GET_TOTAL_DATA($content['id'], "rallye_users", "id", "rallye_id", true); // Did some users joined this rallye? - if ($joined > 0) - { + if ($joined > 0) { // List joined users - $joined = "".$joined.""; - } + $joined = "".$joined.""; + } // END - if // Alter some variables - if (empty($alogin)) $alogin = "???"; - if (empty($templ)) $templ = "---"; - if (empty($descr)) $descr = "---"; + if (empty($content['alogin'])) $content['alogin'] = "???"; + if (empty($content['template'])) $content['template'] = "---"; + if (empty($content['descr'])) $content['descr'] = "---"; // Transfer data into array for the template + // @TODO Rewritings: aid->admin_id in template $content = array( - 'select' => "", - 'aid' => $aid, - 'email_link' => CREATE_EMAIL_LINK($aid), - 'alogin' => $alogin, - 'id' => $id, + 'select' => "", + 'aid' => $content['admin_id'], + 'email_link' => CREATE_EMAIL_LINK($content['admin_id']), + 'alogin' => $content['alogin'], + 'id' => $content['id'], 'sw' => $SW, - 'title' => $title, - 'template' => $templ, + 'title' => $content['title'], + 'template' => $content['template'], 'joined' => $joined, - 'start_date' => MAKE_DATETIME($start, "2"), - 'end_date' => MAKE_DATETIME($end , "2"), - 'active_lnk' => TRANSLATE_YESNO($active), - 'notify_lnk' => TRANSLATE_YESNO($notify), - 'auto_lnk' => TRANSLATE_YESNO($auto_add), - 'notified' => TRANSLATE_YESNO($notified), - 'prices_cnt' => SQL_NUMROWS($result_prices), - 'descr' => COMPILE_CODE($descr), - 'min_users' => $min_users, - 'min_prices' => $min_prices, + 'start_date' => MAKE_DATETIME($content['start_time'], "2"), + 'end_date' => MAKE_DATETIME($content['end_time'] , "2"), + 'active_lnk' => TRANSLATE_YESNO($content['is_active']), + 'notify_lnk' => TRANSLATE_YESNO($content['send_notify']), + 'auto_lnk' => TRANSLATE_YESNO($content['auto_add_new_user']), + 'notified' => TRANSLATE_YESNO($content['notified']), + 'prices_cnt' => GET_TOTAL_DATA($content['id'], "rallye_prices", "id", "rallye_id", true), + 'descr' => COMPILE_CODE($content['descr']), + 'min_users' => $content['min_users'], + 'min_prices' => $content['min_prices'], ); - // Free memory - SQL_FREERESULT($result_prices); - SQL_FREERESULT($result_user); - // Is the rallye active or not? - switch ($active) + switch ($content['is_active']) { case "Y": // Rallye is active so do not edit it! - $content['select'] = "
".$id.""; - $content['active_title'] = RALLYE_DEACTIVATE_NOW; + $content['select'] = "
".$content['id']."
"; + $content['active_title'] = getMessage('RALLYE_DEACTIVATE_NOW'); $content['active'] = 0; break; case "N": - $content['active_title'] = RALLYE_ACTIVATE_NOW; + $content['active_title'] = getMessage('RALLYE_ACTIVATE_NOW'); $content['active'] = "1"; break; } // Notification to members? - switch ($notify) + switch ($content['send_notify']) { case "Y": - $content['notify_title'] = RALLYE_STOP_NOTIFY_NOW; + $content['notify_title'] = getMessage('RALLYE_STOP_NOTIFY_NOW'); $content['notify'] = 0; break; case "N": - $content['notify_title'] = RALLYE_START_NOTIFY_NOW; + $content['notify_title'] = getMessage('RALLYE_START_NOTIFY_NOW'); $content['notify'] = "1"; break; } // Auto-add of new joined members? - switch ($auto_add) + switch ($content['auto_add_new_user']) { case "Y": - $content['auto_title'] = RALLYE_STOP_AUTO_ADD_NOW; + $content['auto_title'] = getMessage('RALLYE_STOP_AUTO_ADD_NOW'); $content['auto'] = 0; break; case "N": - $content['auto_title'] = RALLYE_START_AUTO_ADD_NOW; + $content['auto_title'] = getMessage('RALLYE_START_AUTO_ADD_NOW'); $content['auto'] = "1"; break; } @@ -390,12 +384,11 @@ ORDER BY start_time DESC", // Load template LOAD_TEMPLATE("admin_list_rallyes"); - } - else - { + } else { // No rallyes setup so far - LOAD_TEMPLATE("admin_settings_saved", false, RALLYE_NO_RALLYES_SETUP); + LOAD_TEMPLATE("admin_settings_saved", false, getMessage('RALLYE_NO_RALLYES_SETUP')); } } + // ?>