This commit is contained in:
slawkens
2017-08-28 10:03:01 +02:00
8 changed files with 17 additions and 14 deletions

View File

@@ -470,11 +470,6 @@ class OTS_Account extends OTS_Row_DAO implements IteratorAggregate, Countable
{
$this->data['password'] = (string) $password;
}
public function setSalt($salt)
{
$this->data['salt'] = (string) $salt;
}
/**
* E-mail address.
*
@@ -1032,10 +1027,6 @@ class OTS_Account extends OTS_Row_DAO implements IteratorAggregate, Countable
$this->setPassword($value);
break;
case 'salt':
$this->setSalt($value);
break;
case 'eMail':
$this->setEMail($value);
break;