You are here

function asset_asset_presave in Asset 7

Implements hook_asset_presave().

File

./asset.module, line 1226
Asset module.

Code

function asset_asset_presave($asset) {
  $asset->changed = REQUEST_TIME;
  return $asset;
}