]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-add_surfbar_url.php
Parser error fixed + some empty lines added between table rows (tr)
[mailer.git] / inc / modules / admin / what-add_surfbar_url.php
index eefa72e692cd0d5748d288442ec24c449c691c48..583cbbf0e158e5af317f5246def6c56c39b5c17e 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * 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 *
@@ -45,11 +45,12 @@ addYouAreHereLink('admin', __FILE__);
 
 // Was an URL added?
 if ((isFormSent('add')) && (isPostRequestElementSet('url'))) {
-       // Convert the "reload selections"
-       convertSelectionsToEpocheTimeInPostArray('reload_ye');
+       // Convert the "reload/waiting selections"
+       convertSelectionsToEpocheTimeInPostData('reload_ye');
+       convertSelectionsToEpocheTimeInPostData('waiting_ye');
 
        // Then add this URL
-       if (doSurfbaradminAddUrl(postRequestElement('url'), postRequestElement('limit'), postRequestElement('reload'))) {
+       if (doSurfbarAdminAddUrl(postRequestElement('url'), postRequestElement('limit'), postRequestElement('reload'), postRequestElement('waiting'))) {
                // URL was added
                displayMessage('{--ADMIN_SURFBAR_URL_ADDED--}');
        } else {
@@ -60,11 +61,12 @@ if ((isFormSent('add')) && (isPostRequestElementSet('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);
 
 //
 ?>