X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-unconfirmed.php;h=ffa88d7eac8e003f866402f1a5f3e388b45ff068;hb=34db702d004b245e5528b0ba20c6de441f61820a;hp=b0e26fb04e5e041dd86eaeeac555f1fb2125af2a;hpb=32fed28f469610c8bfdec7f18089cceea9e15df0;p=mailer.git diff --git a/inc/modules/member/what-unconfirmed.php b/inc/modules/member/what-unconfirmed.php index b0e26fb04e..ffa88d7eac 100644 --- a/inc/modules/member/what-unconfirmed.php +++ b/inc/modules/member/what-unconfirmed.php @@ -80,7 +80,7 @@ LIMIT 1", // Free result SQL_FREERESULT($result_data); -} elseif (isGetRequestParameterSet(('mailid'))) { +} elseif (isGetRequestParameterSet('mailid')) { // Display regular member mail by loading its full data $result_data = SQL_QUERY_ESC("SELECT s.id, s.subject, p.text, s.timestamp_ordered AS `timestamp`, s.cat_id, pay.price AS points, p.sender, pay.time, p.data_type @@ -133,7 +133,7 @@ if (isExtensionActive('bonus')) { } // Mails left for confirmation? -if (SQL_NUMROWS($result) > 0) { +if (!SQL_HASZERONUMS($result)) { // Please confirm these mails! $sum = '0'; $OUT = ''; @@ -204,7 +204,6 @@ LIMIT 1", // Prepare data for template $content = array( - 'userid' => getMemberId(), 'data' => bigintval($DATA), 'type' => $type, 'subject' => $subject,