]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-del_sponsor.php
Fixed also usage of previously renamed fields as they must be the same
[mailer.git] / inc / modules / admin / what-del_sponsor.php
index 2f565e4ad7a181213f55165693bad2ea3da7e036..576e7e1e3b0ce54c0eb6341ac68822eba216ad63 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 *
@@ -45,7 +45,7 @@ addYouAreHereLink('admin', __FILE__);
 
 if (isGetRequestElementSet('id')) {
        // Check for selected sponsor
-       $result = SQL_QUERY_ESC("SELECT `id`,`email`,`gender`,`surname`,`family` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`=%s LIMIT 1",
+       $result = SQL_QUERY_ESC("SELECT `id`, `email`, `gender`, `surname`, `family` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`=%s LIMIT 1",
                array(bigintval(getRequestElement('id'))), __FILE__, __LINE__);
        if (SQL_NUMROWS($result) == 1) {
                // Remove sponsor
@@ -57,7 +57,7 @@ if (isGetRequestElementSet('id')) {
                        $content['reason']  = postRequestElement('reason');
 
                        // Prepare message and send it away
-                       $message = loadEmailTemplate('del_sponsor', $content, bigintval(getRequestElement('id')));
+                       $message = loadEmailTemplate('sponsor_deleted', $content, bigintval(getRequestElement('id')));
                        sendEmail($content['email'], '{--ADMIN_SPONSOR_DELETE_SUBJECT--}', $message);
 
                        // Remove account
@@ -81,7 +81,7 @@ if (isGetRequestElementSet('id')) {
                        $content['userid'] = bigintval(getRequestElement('id'));
 
                        // Display form
-                       loadTemplate('admin_delete_sponsor', false, $content);
+                       loadTemplate('admin_delete_sponsor', FALSE, $content);
                }
        } else {
                // Sponsor not found