- 🇯🇵Japan ptmkenny
Drupal 7 is EOL (end of life) so 7.x issues are now being closed.
IMO the disable() function misses one line for a complete clean-up:
function field_encrypt_disable() {
// clear the cache of existing data
cache_clear_all('*', 'cache_field', TRUE);
// set the old class for this bin, if there was one.
$old_cache = variable_get('field_encrypt_old_cache', NULL);
if ($old_cache===NULL) {
variable_del('cache_class_cache_field');
}
else {
variable_set('cache_class_cache_field', $old_cache);
}
}
+variable_del('field_encrypt_old_cache');
Closed: outdated
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Drupal 7 is EOL (end of life) so 7.x issues are now being closed.