Updated copyright year.
[mailer.git] / inc / modules / member / what-html_mail.php
index c00badbd45d26989eb9c9fb3f41f08fbb77f409b..388104a2e90b883545adbee45da9ae5a690110cf 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 - 2016 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 (!isMember()) {
        redirectToIndexMemberOnlyModule();
 }
@@ -46,15 +46,19 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('member', __FILE__);
 
 if ((!isExtensionActive('html_mail')) && (!isAdmin())) {
-       displayMessage(generateExtensionInactiveNotInstalledMessage('html_mail'));
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=html_mail%}');
        return;
 } // END - if
 
 // Class was found and loaded
 if (isFormSent()) {
        // Save settings
-       SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `html`='%s' WHERE `userid`=%s LIMIT 1",
-               array(postRequestParameter('html'), getMemberId()), __FILE__, __LINE__);
+       sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `html`='%s' WHERE `userid`=%s LIMIT 1",
+               array(
+                       postRequestElement('html'),
+                       getMemberId()
+               ), __FILE__, __LINE__
+       );
        displayMessage('{--MEMBER_SETTINGS_SAVED--}');
 } else {
        // Prepare it
@@ -63,7 +67,7 @@ if (isFormSent()) {
        $content['html_' . strtolower(getUserData('html'))] = ' checked="checked"';
 
        // Load main template
-       loadTemplate('member_html_mail_settings', false, $content);
+       loadTemplate('member_html_mail_settings', FALSE, $content);
 }
 
 // [EOF]