function purl_update_6001 in Persistent URL 6
Same name and namespace in other branches
- 7 purl.install \purl_update_6001()
The "path pair" processor was using a variable named "purl_method_path_key", update that to "purl_method_pair_key".
File
- ./
purl.install, line 89
Code
function purl_update_6001() {
if ($pair = variable_get('purl_method_path_key', FALSE)) {
variable_set('purl_method_pair_key', $pair);
variable_del('purl_method_path_key');
}
return array();
}