cloudflare-php
cloudflare-php copied to clipboard
setEmailObfuscation have wrong configuration id.
setEmailObfuscation have the id of disable_security
cloudflare-php/src/Configurations/PageRulesActions.php
LINE:129
public function setEmailObfuscation(bool $active)
{
$this->addConfigurationOption('disable_security', [
'value' => $this->getBoolAsOnOrOff($active)
]);
}
It should be
$this->addConfigurationOption('email_obfuscation', [
Thanks.