- heddn Nicaragua
Drupal 7 is no longer supported in a month. Closing old issues. If this is still something you want addressed in the current 5.x version of the module, please re-open and provide some next steps.
If a user selects "Don't save location details of visitors from GDPR countries ", then no session is ever set for anonymous visitors, neither does session cache module work. The problem is here:
if ($key != 'smart_ip' || ($key == 'smart_ip' && $share_location && !$eu_visitor_dont_save)) {
if (module_exists('session_cache')) {
session_cache_set($key, $value);
}
else {
$_SESSION[$key] = $value;
}
}
Either document this issue, or remove the !$eu_visitor_dont_save in the condition. Just documenting it would have saved me hours.
Closed: outdated
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Drupal 7 is no longer supported in a month. Closing old issues. If this is still something you want addressed in the current 5.x version of the module, please re-open and provide some next steps.