X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-add_surfbar_url.php;h=583cbbf0e158e5af317f5246def6c56c39b5c17e;hb=155492a5b96cec674846973a8524238b0365a848;hp=ba88edb47dd54787ee6a6d97b2b911771faaf1df;hpb=db0c6702086eea2c44d0aae1702dc2e77a0afc4e;p=mailer.git diff --git a/inc/modules/admin/what-add_surfbar_url.php b/inc/modules/admin/what-add_surfbar_url.php index ba88edb47d..583cbbf0e1 100644 --- a/inc/modules/admin/what-add_surfbar_url.php +++ b/inc/modules/admin/what-add_surfbar_url.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -44,19 +44,13 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { addYouAreHereLink('admin', __FILE__); // Was an URL added? -if ((isFormSent('add')) && (isPostRequestParameterSet('url'))) { - // Initialize variables - $DATA = array(); - $id = 'reload_ye'; - $skip = false; - $postData = postRequestArray(); - - // Convert the "reload selections" - // @TODO Find all convertSelectionsToTimestamp() calls and rewrite postRequestParameter() calls to $postData - convertSelectionsToTimestamp($postData, $DATA, $id, $skip); +if ((isFormSent('add')) && (isPostRequestElementSet('url'))) { + // Convert the "reload/waiting selections" + convertSelectionsToEpocheTimeInPostData('reload_ye'); + convertSelectionsToEpocheTimeInPostData('waiting_ye'); // Then add this URL - if (SURFBAR_ADMIN_ADD_URL($postData['url'], $postData['limit'], $postData['reload'])) { + if (doSurfbarAdminAddUrl(postRequestElement('url'), postRequestElement('limit'), postRequestElement('reload'), postRequestElement('waiting'))) { // URL was added displayMessage('{--ADMIN_SURFBAR_URL_ADDED--}'); } else { @@ -67,11 +61,12 @@ if ((isFormSent('add')) && (isPostRequestParameterSet('url'))) { // Prepare content for template $content = array( - 'reload' => createTimeSelections(0, 'reload', 'WDhms') + 'reload' => createTimeSelections(0, 'reload' , 'WDhms'), + 'waiting' => createTimeSelections(0, 'waiting', 'ms') ); // Load template -loadTemplate('admin_add_surfbar_url', false, $content); +loadTemplate('admin_add_surfbar_url', FALSE, $content); // ?>