X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_cats.php;h=4483c96ecc13cb3b11423d85f89c8d56d3ff7da8;hb=1355d2c0b29510dbd407f9cde9f41a5ac02d01fa;hp=2052940d1d24d9de7334f286c3d5df05cb1f5eb4;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7;p=mailer.git diff --git a/inc/modules/admin/what-list_cats.php b/inc/modules/admin/what-list_cats.php index 2052940d1d..4483c96ecc 100644 --- a/inc/modules/admin/what-list_cats.php +++ b/inc/modules/admin/what-list_cats.php @@ -11,10 +11,10 @@ * Kurzbeschreibung : Ausgewaehlte Kategorien eines Mitgliedes * * auflisten * * -------------------------------------------------------------------- * - * $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!!!!!! * * -------------------------------------------------------------------- * @@ -39,17 +39,17 @@ // 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", __FILE__); +ADD_DESCR('admin', __FILE__); -if (REQUEST_ISSET_GET(('uid'))) { +if (REQUEST_ISSET_GET('uid')) { // Check if the user already exists $result = SQL_QUERY_ESC("SELECT surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", - array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__); + array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__); if (SQL_NUMROWS($result) == 1) { // Loads surname, family's name and the email address list($sname, $fname, $email) = SQL_FETCHROW($result); @@ -58,19 +58,19 @@ if (REQUEST_ISSET_GET(('uid'))) { // Prepare constants define('__CATS_BASE' , "".$sname." ".$fname.""); + define('__MEMBER_LINKS', generateMemberAdminActionLinks(constant('__UID'))); + define('__EMAIL' , "".$sname." ".$fname.""); // Ok, list categories of this user $result_cats = SQL_QUERY("SELECT id, cat FROM `{!_MYSQL_PREFIX!}_cats` ORDER BY `sort`", __FILE__, __LINE__); if (SQL_NUMROWS($result_cats) > 0) { // List categories - $cnt = 1; $OUT = ""; $SW = 2; + $cnt = 1; $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result_cats)) { // Check user's selection - $result_user = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_user_cats` WHERE userid=%s AND cat_id=%s LIMIT 1", - array(bigintval(REQUEST_GET('uid')), bigintval($content['id'])), __FILE__, __LINE__); + $result_user = SQL_QUERY_ESC("SELECT `id` FROM `{!_MYSQL_PREFIX!}_user_cats` WHERE userid=%s AND cat_id=%s LIMIT 1", + array(bigintval(REQUEST_GET('uid')), bigintval($content['id'])), __FILE__, __LINE__); // Set selection $selection = "{--NO--}"; @@ -100,7 +100,7 @@ if (REQUEST_ISSET_GET(('uid'))) { } } else { // User not found - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('ADMIN_MEMBER_404'), constant('__UID'))); + LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('ADMIN_MEMBER_404'), constant('__UID'))); } } else { // Output selection form with all confirmed user accounts listed