]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-add_surfbar_url.php
mailer project continued:
[mailer.git] / inc / modules / admin / what-add_surfbar_url.php
index a4bce3ff69ed754891a9bb3f53793ec35a277803..eefa72e692cd0d5748d288442ec24c449c691c48 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * 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 *
@@ -45,18 +45,11 @@ addYouAreHereLink('admin', __FILE__);
 
 // Was an URL added?
 if ((isFormSent('add')) && (isPostRequestElementSet('url'))) {
-       // Initialize variables
-       $content = array();
-       $id = 'reload_ye';
-       $skip = false;
-       $postData = postRequestArray();
-
        // Convert the "reload selections"
-       // @TODO Find all convertSelectionsToEpocheTime() calls and rewrite postRequestElement() 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 {