FIX to SHOW MEMBERS who are browsing album to show in forum's whoisonline page
in album's
sessions.php
FIND
PHP Code:
$sql = "UPDATE ".SESSIONS_TABLE."
SET lastactivity = $this->current_time
WHERE sessionhash = '$this->session_id'
AND host = '$this->user_ip'";
REPLACE BY
PHP Code:
$sql = "UPDATE ".SESSIONS_TABLE."
SET lastactivity = $this->current_time, location = '$this->user_location'
WHERE sessionhash = '$this->session_id'
AND host = '$this->user_ip'";