Skip to content

Instantly share code, notes, and snippets.

@jmas
Created January 13, 2014 21:10
Show Gist options
  • Save jmas/8408222 to your computer and use it in GitHub Desktop.
Save jmas/8408222 to your computer and use it in GitHub Desktop.
function beforeSave()
{
if ($this->isNew()) {
$this->password = sha1($this->password);
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment