]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-add_surfbar_url.php
This debug message was to noisy but it is needed in development (where debug-mode...
[mailer.git] / inc / modules / admin / what-add_surfbar_url.php
index 1df52561c4f381252591154ba4781acc295fab9a..eefa72e692cd0d5748d288442ec24c449c691c48 100644 (file)
@@ -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 - 2012 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,12 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Was an URL added?
-if ((isFormSent('add')) && (isPostRequestParameterSet('url'))) {
-       // Initialize variables
-       $content = array();
-       $id = 'reload_ye';
-       $skip = false;
-       $postData = postRequestArray();
-
+if ((isFormSent('add')) && (isPostRequestElementSet('url'))) {
        // Convert the "reload selections"
-       // @TODO Find all convertSelectionsToEpocheTime() calls and rewrite postRequestParameter() calls to $postData
-       convertSelectionsToEpocheTime($postData, $content, $id, $skip);
+       convertSelectionsToEpocheTimeInPostArray('reload_ye');
 
        // Then add this URL
-       if (SURFBAR_ADMIN_ADD_URL($postData['url'], $postData['limit'], $postData['reload'])) {
+       if (doSurfbaradminAddUrl(postRequestElement('url'), postRequestElement('limit'), postRequestElement('reload'))) {
                // URL was added
                displayMessage('{--ADMIN_SURFBAR_URL_ADDED--}');
        } else {