function saml_sp_update_7205 in SAML Service Provider 7.3
Same name and namespace in other branches
- 7.8 saml_sp.install \saml_sp_update_7205()
- 7.2 saml_sp.install \saml_sp_update_7205()
move the cert and key locations out of the security variables and into their own variables so they can be excluded from features
File
- ./
saml_sp.install, line 227 - Hook_requirements for the SAML Service Provider module.
Code
function saml_sp_update_7205() {
$security = variable_get('saml_sp__security', array());
variable_set('saml_sp__key_location', $security['saml_sp__key_location']);
variable_set('saml_sp__cert_location', $security['saml_sp__cert_location']);
}