function cas_update_6300 in CAS 6.3
Same name and namespace in other branches
- 7 cas.install \cas_update_6300()
Depreciate "Verify the server using PEM cerificate" option.
File
- ./
cas.install, line 192 - Installation hooks for the CAS module.
Code
function cas_update_6300() {
if (variable_get('cas_cert_verify', 'none') == 'verify') {
variable_set('cas_cert_verify', 'none');
}
$ret = array();
return $ret;
}