X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;h=b563cfe848ab1875892ecf59c025a3d5c8a4a5b2;hb=9e604ce404fe7d2d8dafc259a5fb8cd826aec5e6;hp=36920aeb0756b63d8d0cb764de0a14102d3f8061;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7;p=mailer.git diff --git a/inc/modules/admin/what-chk_regs.php b/inc/modules/admin/what-chk_regs.php index 36920aeb07..b563cfe848 100644 --- a/inc/modules/admin/what-chk_regs.php +++ b/inc/modules/admin/what-chk_regs.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Neue Anmeldungen pruefen * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -38,38 +38,42 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Add description as navigation point -ADD_DESCR ("admin", basename(__FILE__)); +ADD_DESCR ('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` -WHERE `status`='UNCONFIRMED' -ORDER BY userid ASC", __FILE__, __LINE__); +$result = SQL_QUERY("SELECT + `userid`, `gender`, `surname`, `family`, `email`, `REMOTE_ADDR`, `refid`, `user_hash` +FROM + `{!_MYSQL_PREFIX!}_user_data` +WHERE + `status`='UNCONFIRMED' +ORDER BY + `userid` ASC", __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // We have some (new?) registrations! - $OUT = ""; $SW = 2; + $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // Add link to refid - if ($content['refid'] > 0) $content['refid'] = ADMIN_USER_PROFILE_LINK($content['refid']); + 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 $content = array( 'sw' => $SW, - 'gender' => TRANSLATE_GENDER($content['gender']), + 'gender' => translateGender($content['gender']), 'sname' => $content['surname'], 'fname' => $content['family'], - 'email' => "".$content['email']."", + 'email' => "".$content['email']."", 'ip' => $content['REMOTE_ADDR'], 'ref' => $content['refid'], 'hash' => $content['user_hash'], - 'link' => ADMIN_USER_PROFILE_LINK($content['userid']), + 'link' => generateUserProfileLink($content['userid']), ); // Load row template and switch color @@ -85,7 +89,7 @@ if (SQL_NUMROWS($result) > 0) { LOAD_TEMPLATE("admin_reg"); } else { // No registrations left - or all has confirmed their email address... :-) - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_ALL_CONFIRMED_EMAIL')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_ALL_CONFIRMED_EMAIL')); } // Free memory