Hi,
What is/was your previous version ?
It looks weird because the plugin has just two modifications during May and nothing after.
The last modification for the plugin is the code to re-create the missing AUP rule.
The other is the replacement of the line
if(isset($user->user_points) || in_array('user_points', array_keys(get_object_vars($user))))
Into
if(isset($user->user_points) || ($user != null && in_array('user_points', array_keys(get_object_vars($user)))))
In order to avoid a warning.. But we can use
if(isset($user->user_points) || (!empty($user) && is_object($user) && in_array('user_points', array_keys(get_object_vars($user)))))
instead.
Regards,