function system_update_7066
Migrate the 'file_directory_temp' variable.
Related topics
Archivo
- drupal-7.x/
modules/ system/ system.install, line 2959 - Install, update and uninstall functions for the system module.
Código
function system_update_7066() {
$d6_file_directory_temp = variable_get('file_directory_temp', file_directory_temp());
variable_set('file_temporary_path', $d6_file_directory_temp);
variable_del('file_directory_temp');
}