You are here

function hosting_update_7304 in Hosting 7.3

Upgrade existing hosting_task_logs_types_display variable to an array.

File

./hosting.install, line 639
Define database schemas and update functions for the hosting module.

Code

function hosting_update_7304() {
  $display = variable_get('hosting_task_logs_types_display', 'error warning info message ok status success');
  if (is_string($display)) {
    $display = explode(' ', $display);
    $display = array_combine($display, $display);
    variable_set('hosting_task_logs_types_display', $display);
  }
}