You are here

function cdn_update_6203 in CDN 7.2

Same name and namespace in other branches
  1. 6.2 cdn.install \cdn_update_6203()

More consistent variable names: upgrade path.

File

./cdn.install, line 252
Install, update and uninstall functions for the CDN module.

Code

function cdn_update_6203() {
  db_query("UPDATE {variable} SET name = 'cdn_exception_file_path_blacklist' WHERE name = 'cdn_exception_path_blacklist'");
  db_query("UPDATE {variable} SET name = 'cdn_exception_file_path_whitelist' WHERE name = 'cdn_exception_path_whitelist'");
  return t('Updated variables (internal name changes only, for improved consistency).');
}