X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;h=d4af53b2633ac560923b253ce67bce22a00970c2;hb=5b794a32b30ec5322765c89a22c4c27aece94a42;hp=b563cfe848ab1875892ecf59c025a3d5c8a4a5b2;hpb=3f51c40f4fede87228216f9285b745a339e3891d;p=mailer.git diff --git a/inc/modules/admin/what-chk_regs.php b/inc/modules/admin/what-chk_regs.php index b563cfe848..d4af53b263 100644 --- a/inc/modules/admin/what-chk_regs.php +++ b/inc/modules/admin/what-chk_regs.php @@ -17,7 +17,7 @@ * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -37,19 +37,18 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); -} +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); +} // END - if // Add description as navigation point -ADD_DESCR ('admin', basename(__FILE__)); +addMenuDescription('admin', basename(__FILE__)); // Check for accounts $result = SQL_QUERY("SELECT `userid`, `gender`, `surname`, `family`, `email`, `REMOTE_ADDR`, `refid`, `user_hash` FROM - `{!_MYSQL_PREFIX!}_user_data` + `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='UNCONFIRMED' ORDER BY @@ -63,12 +62,12 @@ if (SQL_NUMROWS($result) > 0) { if ($content['refid'] > 0) $content['refid'] = generateUserProfileLink($content['refid']); // Prepare array for the row template - // @TODO Rewritings: sname->surname,fname->family,ip->REMOTE_ADDR,ref->refid,hash->user_hash in template + // @TODO Rewritings: surname->surname,family->family,ip->REMOTE_ADDR,ref->refid,hash->user_hash in template $content = array( 'sw' => $SW, 'gender' => translateGender($content['gender']), - 'sname' => $content['surname'], - 'fname' => $content['family'], + 'surname' => $content['surname'], + 'family' => $content['family'], 'email' => "".$content['email']."", 'ip' => $content['REMOTE_ADDR'], 'ref' => $content['refid'], @@ -77,23 +76,19 @@ if (SQL_NUMROWS($result) > 0) { ); // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_reg_row", true, $content); + $OUT .= loadTemplate('admin_reg_row', true, $content); $SW = 3 - $SW; } - // Remember rows - // @TODO Rewrite this constant - define('__REG_ROWS', $OUT); - // Load main template - LOAD_TEMPLATE("admin_reg"); + loadTemplate('admin_reg', false, $OUT); } else { // No registrations left - or all has confirmed their email address... :-) - LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_ALL_CONFIRMED_EMAIL')); + loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_CONFIRMED_EMAIL')); } // Free memory SQL_FREERESULT($result); -// +// [EOF] ?>