ElkArte Community

Elk Development => Bug Reports => Exterminated Bugs => Topic started by: niloc on July 11, 2016, 11:47:47 am

Title: Recent Activity in a person's profile error (1.1)
Post by: niloc on July 11, 2016, 11:47:47 am
When you click on a person's profile, and you click on "Recent Activity" button next to the Summary button... it doesn't show the person's recent activity.. instead it shows your own recent activity. :O

Title: Re: Recent Activity in a person's profile error (1.1)
Post by: emanuele on July 11, 2016, 12:25:12 pm
Ooops, the u={user_id} is missing from the URL.
Title: Re: Recent Activity in a person's profile error (1.1)
Post by: radu81 on August 10, 2016, 02:45:42 am
And also the attachments, displays your own attachments ;)
Title: Re: Recent Activity in a person's profile error (1.1)
Post by: niloc on August 11, 2016, 01:19:30 am
In your ProfileInfo.Controller.php,

Just add the bolded parts:

$context['current_member'] = $this->_memID;
      $context['summarytabs'] = array(
         'summary' => array(
            'name' => $txt['summary'],
            'templates' => array(
               array('summary', 'user_info'),
               array('contact', 'other_info'),
               array('user_customprofileinfo', 'moderation'),
            ),
            'active' => true,
         ),
         'recent' => array(
            'name' => $txt['profile_recent_activity'],
            'templates' => array('posts', 'topics', 'attachments'),
            'active' => true,
            'href' => $scripturl . '?action=profileInfo;sa=recent;xml;u='.$context['current_member'].';' . $context['session_var'] . '=' . $context['session_id'],
         ),

This should solve the problem! Not sure if it's the best way though.. wonder what will the "official fix" be?

Title: Re: Recent Activity in a person's profile error (1.1)
Post by: emanuele on September 06, 2016, 07:30:25 am
https://github.com/elkarte/Elkarte/commit/e6d253f12dfbd11d5f9d84e78cec3ca97624cf0a
Title: Re: Recent Activity in a person's profile error (1.1)
Post by: niloc on September 07, 2016, 12:18:40 am
Error 404 page not found :p
Title: Re: Recent Activity in a person's profile error (1.1)
Post by: emanuele on September 07, 2016, 04:19:21 am
When I'll push it live it will be fine...unless I rebased in the meantime. :P
Title: Re: Recent Activity in a person's profile error (1.1)
Post by: Trekkie101 on September 07, 2016, 06:04:59 am
Stalking can re commence!