You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function saveTCFile in /CRM/Gdpr/Form/Settings.php misses out a / in the file path when storing the uploaded data policy file. This results in the link provided on the GDPR settings and the Communications Preferences pages not working.
Current line 302: if ($saved) { return $this->getFileUrl($publicUploadDir . $fileName); }
whereas it should be as in the "file_exists" check earlier in the function (line 294): if ($saved) { return $this->getFileUrl($publicUploadDir . '/' . $fileName); }
The text was updated successfully, but these errors were encountered:
function saveTCFile in /CRM/Gdpr/Form/Settings.php misses out a / in the file path when storing the uploaded data policy file. This results in the link provided on the GDPR settings and the Communications Preferences pages not working.
Current line 302:
if ($saved) { return $this->getFileUrl($publicUploadDir . $fileName); }
whereas it should be as in the "file_exists" check earlier in the function (line 294):
if ($saved) { return $this->getFileUrl($publicUploadDir . '/' . $fileName); }
The text was updated successfully, but these errors were encountered: