function overlay_user_presave in Drupal 7
Implements hook_user_presave().
File
- modules/
overlay/ overlay.module, line 122 - Displays the Drupal administration interface in an overlay.
Code
function overlay_user_presave(&$edit, $account, $category) {
if (isset($edit['overlay'])) {
$edit['data']['overlay'] = $edit['overlay'];
}
}