]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_newsletter.php
Possible fix for #125, applied fixes from profi-concept's branch
[mailer.git] / inc / modules / admin / what-list_newsletter.php
index 70b82b1dc7870b952dccebf2aea280f7156f61cd..0a28997115e3d95090b89e7285c39f3124ca1286 100644 (file)
@@ -45,18 +45,18 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
 // Add description as navigation point
 ADD_DESCR('admin', __FILE__);
 
-if ((REQUEST_ISSET_POST('uid')) && (REQUEST_ISSET_POST(('id')))) {
+if ((REQUEST_ISSET_POST('uid')) && (REQUEST_ISSET_POST('id'))) {
        // Update database...
        // First user's account
        SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET nl_until=(UNIX_TIMESTAMP() + nl_timespan), nl_receive='N', nl_timespan=0 WHERE userid=%s LIMIT 1",
-               array(bigintval(REQUEST_POST('uid'))), __FILE__, __LINE__);
+       array(bigintval(REQUEST_POST('uid'))), __FILE__, __LINE__);
 
        // Next the task system...
        runFilterChain('solve_task', bigintval(REQUEST_POST('id')));
 
        // Send mail to user
        $msg = LOAD_EMAIL_TEMPLATE("member_newsletter_done", true, bigintval(REQUEST_POST('uid')));
-       SEND_EMAIL(bigintval(REQUEST_POST('uid')), NL_MEMBER_DONE_SUBJECT, $msg);
+       sendEmail(bigintval(REQUEST_POST('uid')), getMessage('NL_MEMBER_DONE_SUBJECT'), $msg);
 
        // Output message to admin
        LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_NL_MEMBER_DONE'));