Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / admin / what-list_sponsor_pay.php
index e2334d6d79fb464ca5334c38b368926d34434d32..cf3fb4821cb612f9ecf0f946b392cd16aca3274d 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 *
@@ -173,14 +173,18 @@ if (isFormSent('add')) {
 } else {
        // Load all payment types
        $result = SQL_QUERY("SELECT
-       `id`,`pay_name`,`pay_rate`,`pay_min_count`,`pay_currency`
+       `id`,
+       `pay_name`,
+       `pay_rate`,
+       `pay_min_count`,
+       `pay_currency`
 FROM
        `{?_MYSQL_PREFIX?}_sponsor_paytypes`
 ORDER BY
        `pay_name` ASC",
                __FILE__, __LINE__);
 
-       // Do we have some paytypes setup?
+       // Are there some payment types setup?
        if (!SQL_HASZERONUMS($result)) {
                // Prepare variables for listing
                $OUT = '';