You are here

function hosting_client_update_3 in Hosting 7.4

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

Implements hook_update_N().

Rebuild node access table

File

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

Code

function hosting_client_update_3() {
  $ret = array();
  node_access_rebuild();
  return $ret;
}