This works:
PHP Code:
$authAdapter->setCredentialTreatment('MD5(?)');
But I like to set it in the config.ini file and I guess becaouse of the question mark it doesn't work. Is there a way to escape that?
Code:
accounts.CredentialTreatment = MD5(?)
PHP Code:
if (null !== $registry->config->accounts->CredentialTreatment) {
$this->_credentialTreatment = $registry->config->accounts->CredentialTreatment;
}
$authAdapter->setCredentialTreatment($this->_credentialTreatment);