X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=0.2.1%2Finc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;fp=0.2.1%2Finc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;h=0000000000000000000000000000000000000000;hp=7f7df23637a1cd87a565ee054e5813b8c3db72e6;hb=ab9c0550b44bdb6bbb930b4553f687702963801e;hpb=50646cc7b05cf5ff93e9b1e36ab03047cc0cd6bf diff --git a/0.2.1/inc/modules/admin/what-chk_regs.php b/0.2.1/inc/modules/admin/what-chk_regs.php deleted file mode 100644 index 7f7df23637..0000000000 --- a/0.2.1/inc/modules/admin/what-chk_regs.php +++ /dev/null @@ -1,87 +0,0 @@ - 0) -{ - // We have some (new?) registrations! - $SW = 2; $OUT = ""; - while (list($uid, $sex, $sname, $fname, $email, $IP, $ref, $hash) = SQL_FETCHROW($query)) - { - if ($ref > 0) $ref = ADMIN_USER_PROFILE_LINK($ref); - // Prepare array for the row template - $content = array( - 'sw' => $SW, - 'sex' => TRANSLATE_SEX($sex), - 'sname' => $sname, - 'fname' => $fname, - 'email' => "".stripslashes($email)."", - 'ip' => $IP, - 'ref' => $ref, - 'hash' => $hash, - 'link' => ADMIN_USER_PROFILE_LINK($uid), - ); - - // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_reg_row", true, $content); - $SW = 3 - $SW; - } - - // Free memory - SQL_FREERESULT($query); - define('__REG_ROWS', $OUT); - - // Load main template - LOAD_TEMPLATE("admin_reg"); -} - else -{ - // No registrations left - or all has confirmed their email address... :-) - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_ALL_CONFIRMED_EMAIL); -} -CLOSE_TABLE(); -// -?>