1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-01 13:24:10 +01:00

Contacts: Set unsaved state when adding/updating properties.

This commit is contained in:
Thomas Tanghus 2013-03-30 07:30:14 +01:00
parent cc69b94775
commit 0b1926841b

View File

@ -567,8 +567,8 @@ class Contact extends VObject\VCard implements IPIMObject {
$this->setSaved(false);
}
public function __unset($id) {
parent::__unset($key, $value);
public function __unset($key) {
parent::__unset($key);
$this->setSaved(false);
}