]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-payments.php
Fixes loading of network type config
[mailer.git] / inc / modules / admin / what-payments.php
index 5c936a7ea7941247b1791fec7b5a0c8391ffb4c4..07e2a54fc4f4d1a29a3e28e90f442300f7a340cc 100644 (file)
@@ -17,7 +17,7 @@
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * 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 *
@@ -59,7 +59,7 @@ if (isFormSent()) {
 
                case 'edit':
                        foreach (postRequestElement('time') as $id => $value) {
-                               addSql("UPDATE `{?_MYSQL_PREFIX?}_payments` SET `time`='" . $value . "', `payment`='".postRequestElement('payment', $id)."', price='".postRequestElement('price', $id)."', mail_title='".postRequestElement('mail_title', $id)."' WHERE `id`='".$id."' LIMIT 1");
+                               addSql("UPDATE `{?_MYSQL_PREFIX?}_payments` SET `time`='" . $value . "',`payment`='".postRequestElement('payment', $id)."', price='".postRequestElement('price', $id)."', mail_title='".postRequestElement('mail_title', $id)."' WHERE `id`='".$id."' LIMIT 1");
                        } // END - foreach
                        break;
 
@@ -74,10 +74,10 @@ if (isFormSent()) {
        if (countSqls() > 0) {
                // Run all queries
                runFilterChain('run_sqls');
-               $content = '<span class="notice">{--SETTINGS_SAVED--}</span>';
+               $content = '<span class="good">{--SETTINGS_SAVED--}</span>';
        } else {
                // Nothing has changed!
-               $content = '<span class="notice">{--SETTINGS_NOT_SAVED--}</span>';
+               $content = '<span class="bad">{--SETTINGS_NOT_SAVED--}</span>';
        }
 
        // Output template
@@ -117,10 +117,10 @@ if (isFormSent()) {
        // Load main template
        loadTemplate('admin_edit_payments', false, $OUT);
 } else {
-       // Referal levels
+       // Referral levels
        $result = SQL_QUERY("SELECT `id`,`time`,`payment`,`mail_title`,`price` FROM `{?_MYSQL_PREFIX?}_payments` ORDER BY `time` ASC", __FILE__, __LINE__);
        if (!SQL_HASZERONUMS($result)) {
-               // Make referal levels editable and deletable
+               // Make referral levels editable and deletable
                $OUT = '';
 
                // List already existing categories for editing
@@ -136,7 +136,7 @@ if (isFormSent()) {
                loadTemplate('admin_list_payments', false, $OUT);
        } // END - if
 
-       // Form for adding new referal levels
+       // Form for adding new referral levels
        loadTemplate('admin_add_payment');
 }