]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/sponsor/account.php
Added listing of sub id enhanced referral links in member area + used sub id in refer...
[mailer.git] / inc / modules / sponsor / account.php
index 71c17963ec812287051f104fee9769f06523420b..fa3cf9904716312630c845053246870856bddc91 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 *
@@ -37,7 +37,7 @@
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       die();
+       exit();
 } elseif (!isExtensionActive('sponsor')) {
        displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=sponsor%}');
        return;
@@ -49,10 +49,10 @@ if (!defined('__SECURITY')) {
 
 // Data for the formular
 $result = SQL_QUERY_ESC("SELECT
-       `id`,`company`,`position`,`tax_ident`,
-       `gender`,`surname`,`family`,`street_nr1`,`street_nr2`,`zip`,`city`,`country`,
-       `phone`,`fax`,`cell`,`email`,`url`,
-       `status`,`receive_warnings`
+       `id`, `company`, `position`, `tax_ident`,
+       `gender`, `surname`, `family`, `street_nr1`, `street_nr2`, `zip`, `city`, `country`,
+       `phone`, `fax`, `cell`, `email`, `url`,
+       `status`, `receive_warnings`
 FROM
        `{?_MYSQL_PREFIX?}_sponsor_data`
 WHERE
@@ -97,7 +97,7 @@ if (SQL_NUMROWS($result) == 1) {
                                // Check if we want to change password or not
                                if ((postRequestElement('pass1') == postRequestElement('pass2')) && (isPostRequestElementSet('pass1')) && (postRequestElement('pass1') != postRequestElement('pass_old'))) {
                                        // Change current password
-                                       $PASS_AND  = ", `password`='%s'";
+                                       $PASS_AND  = ",`password`='%s'";
                                        $PASS_DATA = md5(postRequestElement('pass1'));
                                } // END - if