X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-add_rallye.php;h=8286c6e260d8bbe28c22b9c60e85a7e9edcdb8c1;hp=ac12eb6b8e712104e4ffd5cba3e159c3ed5fc285;hb=2379934be6a196a54f4155bb8e24c49b20736969;hpb=f1be6fe9139d0036115366c4a4dfc41f8bec115b diff --git a/inc/modules/admin/what-add_rallye.php b/inc/modules/admin/what-add_rallye.php index ac12eb6b8e..8286c6e260 100644 --- a/inc/modules/admin/what-add_rallye.php +++ b/inc/modules/admin/what-add_rallye.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -45,27 +45,27 @@ addYouAreHereLink('admin', __FILE__); if (isFormSent()) { // Generate timestamps - $START = mktime(postRequestParameter('start_hour'), postRequestParameter('start_min'), postRequestParameter('start_sec'), postRequestParameter('start_month'), postRequestParameter('start_day'), postRequestParameter('start_year')); - $END = mktime(postRequestParameter('end_hour') , postRequestParameter('end_min') , postRequestParameter('end_sec') , postRequestParameter('end_month') , postRequestParameter('end_day') , postRequestParameter('end_year') ); + $START = mktime(postRequestElement('start_hour'), postRequestElement('start_min'), postRequestElement('start_sec'), postRequestElement('start_month'), postRequestElement('start_day'), postRequestElement('start_year')); + $END = mktime(postRequestElement('end_hour') , postRequestElement('end_min') , postRequestElement('end_sec') , postRequestElement('end_month') , postRequestElement('end_day') , postRequestElement('end_year') ); // Is there already a rallye running? - $result = SQL_QUERY_ESC("SELECT id, admin_id FROM `{?_MYSQL_PREFIX?}_rallye_data` WHERE (start_time <= %s AND end_time >= %s) OR (start_time >= %s AND start_time <= %s) LIMIT 1", + $result = SQL_QUERY_ESC("SELECT `id`,`admin_id` FROM `{?_MYSQL_PREFIX?}_rallye_data` WHERE (`start_time` <= %s AND `end_time` >= %s) OR (`start_time` >= %s AND `start_time` <= %s) LIMIT 1", array($START, $START, $START, $END), __FILE__, __LINE__); if (SQL_HASZERONUMS($result)) { // Ok, start and end time did not overlap - SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_rallye_data` (`admin_id`, `title`, `descr`, template, `start_time`, `end_time`, `auto_add_new_user`, `is_active`, `send_notify`) + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_rallye_data` (`admin_id`,`title`,`descr`, template, `start_time`,`end_time`,`auto_add_new_user`,`is_active`,`send_notify`) VALUES (%s,'%s','%s','%s',%s,%s,'%s','%s','%s')", array( getCurrentAdminId(), - postRequestParameter('title'), - postRequestParameter('descr'), - postRequestParameter('template'), + postRequestElement('title'), + postRequestElement('descr'), + postRequestElement('template'), $START, $END, - postRequestParameter('auto_add'), - postRequestParameter('active'), - postRequestParameter('notify'), + postRequestElement('auto_add'), + postRequestElement('active'), + postRequestElement('notify'), ), __FILE__, __LINE__); // Load id @@ -76,22 +76,17 @@ VALUES (%s,'%s','%s','%s',%s,%s,'%s','%s','%s')", redirectToUrl('modules.php?module=admin&what=config_rallye_prices&rallye='.$id); } else { // Problem detected... - loadTemplate('admin_settings_saved', false, '{--RALLYE_PROBLEM_CREATE--}'); + displayMessage('{--RALLYE_PROBLEM_CREATE--}'); } } else { // Free memory SQL_FREERESULT($result); // Overlapping detected - loadTemplate('admin_settings_saved', false, '{--RALLYE_OVERLAP_TIMES--}'); + displayMessage('{--RALLYE_OVERLAP_TIMES--}'); } } // END - if -// Prepare some constants for the template -$content['auto_add_options'] = generateOptionList('/ARRAY/', array('Y','N'), array('{--YES--}', '{--NO--}' )); -$content['active_options'] = generateOptionList('/ARRAY/', array('N','Y'), array('{--NO--}' , '{--YES--}')); -$content['notify_options'] = generateOptionList('/ARRAY/', array('Y','N'), array('{--YES--}', '{--NO--}' )); - // Starting day $content['start_sec'] = addSelectionBox('sec' , 0 , 'start'); $content['start_min'] = addSelectionBox('min' , 0 , 'start'); @@ -111,9 +106,6 @@ $content['end_day'] = addSelectionBox('day' , getDay($endingStamp) , 'end'); $content['end_month'] = addSelectionBox('month', getMonth($endingStamp), 'end'); $content['end_year'] = addSelectionBox('year' , getYear($endingStamp) , 'end'); -// Transfer (maybe found) templates into constant for the template -$content['templates_selection'] = addReferalRallyeTemplateSelection(); - // Load template loadTemplate('admin_add_rallye', false, $content);