Merge pull request #2078 from owncloud/save_category_relations

VCategories: Don't forget to save category relations if category exists.
This commit is contained in:
Thomas Müller 2013-03-04 12:04:16 -08:00
commit 5c061561c5
1 changed files with 4 additions and 5 deletions

View File

@ -348,12 +348,11 @@ class OC_VCategories {
self::$relations[] = array('objid' => $id, 'category' => $name);
}
}
if(count($newones) > 0) {
$this->categories = array_merge($this->categories, $newones);
if($sync === true) {
$this->save();
}
$this->categories = array_merge($this->categories, $newones);
if($sync === true) {
$this->save();
}
return true;
}