generateDateTime($GLOBALS['last_online']['online']), 'last_module' => getTitleFromMenu('member', $GLOBALS['last_online']['module']) ); // Load header template loadTemplate('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(getMemberId()), __FILE__, __LINE__); if ((SQL_NUMROWS($result) == 1) && (isExtensionActive('profile'))) { // Yes, he is so let's place him his wanted buttons loadTemplate('member_profile_outdated'); } else { // Load the template below this default data loadTemplate('member_welcome'); } // Free memory SQL_FREERESULT($result); // Load footer template loadTemplate('member_welcome_footer'); // [EOF] ?>