function shib_auth_update_6401 in Shibboleth Authentication 6.4
Implementation of hook_update().
Hook to update module from older revisions
Return value
an array with the executed SQL commands
File
- ./
shib_auth.install, line 158 - This is the install file of the Shibboleth authentication module for Drupal system
Code
function shib_auth_update_6401() {
// This update is a helper to rebuild menu tree, because of the new menu item
// This is useful for those, who are updating from a previous 4.x release
menu_rebuild();
// For some reason, update.php insists to have a returned array. Let it be then.
$returned = array();
return $returned;
}