Detailed Description:
Hello,
I just installed Uploads without any specific Preferences (no subnet defined).
When downloading a file from the frontend (through action.getfile.php), I
noticed that the downloads counter doesn't work.
This seems to come from the subnet stuff :
$subnets = explode(",",$this->GetPreference("subnet_exclusions"));
This creates an array even if the pref is empty, and causes the "exit" function
to be called.
Adding :
if (!empty($this->GetPreference('subnet_exclusions')))
{
// subnet stuff
}
makes the download counter work again
Hope this will help !