Quote:
Originally Posted by DobieGillis?
Mary
any answer to why when I look in who's online and if anyone is in members, it says location unknown memberindex
|
I don't agree with this feature, and I never added it to any of my modules. In my opinion and believings, it's against personal privacy to let other members know what I'm doing when I'm online in a site.
In any case if it's so important for you, open with a text editor product-micromembers.xml
Search for:
Just below add:
Code:
<plugin active="1" executionorder="50">
<title>Location</title>
<hookname>online_location_unknown</hookname>
<phpcode><![CDATA[
if(strstr($userinfo['location'], 'memberindex.php') !== FALSE) {
$handled = 1;
$userinfo['where'] = '<a href="'.$userinfo['location'].'">MemberIndex</a>';
$userinfo['action'] = '<b>Viewing Member Index</b>';
}
]]></phpcode>
</plugin>
Mary