X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-welcome.php;h=8aa3ff90674f5c2fc2f6746667fb1be608a1531a;hb=81bfbcd72e424060ea1223b49ad92fcfa150f361;hp=ce5e843fad2dd867308fb545c8adba4bb86365c4;hpb=7f104f6fe558bb56b4205241435a2357c2feece1;p=mailer.git diff --git a/inc/modules/member/what-welcome.php b/inc/modules/member/what-welcome.php index ce5e843fad..8aa3ff9067 100644 --- a/inc/modules/member/what-welcome.php +++ b/inc/modules/member/what-welcome.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Willkommen zum Login-Bereich! * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * 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 * * For more information visit: http://www.mxchange.org * @@ -33,33 +38,32 @@ // Some security stuff... if (!defined('__SECURITY')) { - $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); } elseif (!IS_MEMBER()) { - LOAD_URL("modules.php?module=index"); + redirectToUrl('modules.php?module=index'); } // Add description as navigation point -ADD_DESCR ("member", basename(__FILE__)); +ADD_DESCR ('member', basename(__FILE__)); // Export data for template -define('_LAST_ONLINE_VALUE', MAKE_DATETIME($LAST['online'])); -define('_LAST_MODULE_VALUE', GET_MOD_DESCR("member", $LAST['module'])); +$content = array( + 'last_online' => generateDateTime($GLOBALS['last']['online']), + 'last_module' => getModuleDescription('member', $GLOBALS['last']['module']) +); // Load header template -LOAD_TEMPLATE("member_welcome_header"); +LOAD_TEMPLATE("member_welcome_header", false, $content); // Chedk if he is returning from a profile update notification -$result = SQL_QUERY_ESC("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE notified='Y' AND userid=%s LIMIT 1", - array($GLOBALS['userid']), __FILE__, __LINE__); +$result = SQL_QUERY_ESC("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE notified='Y' AND `userid`=%s LIMIT 1", + array(getUserId()), __FILE__, __LINE__); -if ((SQL_NUMROWS($result) == 1) && (EXT_IS_ACTIVE("profile"))) -{ +if ((SQL_NUMROWS($result) == 1) && (EXT_IS_ACTIVE('profile'))) { // Yes, he is so let's place him his wanted buttons LOAD_TEMPLATE("profile-update"); -} - else -{ +} else { // Load the template below this default data LOAD_TEMPLATE("member_welcome"); }