function overlay_user_presave
Implements hook_user_presave().
Archivo
- drupal-7.x/
modules/ overlay/ overlay.module, line 108 - Displays the Drupal administration interface in an overlay.
Código
function overlay_user_presave(&$edit, $account, $category) {
if (isset($edit['overlay'])) {
$edit['data']['overlay'] = $edit['overlay'];
}
}