You are here

function hosting_client_update_7 in Hosting 7.3

Same name and namespace in other branches
  1. 5 client/hosting_client.install \hosting_client_update_7()
  2. 6.2 client/hosting_client.install \hosting_client_update_7()
  3. 7.4 client/hosting_client.install \hosting_client_update_7()

Implements hook_update_N().

Rebuild the node access table now that we fixed the hook_access properly

File

client/hosting_client.install, line 200
Define database schema, install and update functions for the hosting_client module.

Code

function hosting_client_update_7() {
  node_access_rebuild();
  return array();
}