Merge pull request #46 from owncloud/fix-multi-grouping

Fix grouping with same file
This commit is contained in:
Joas Schilling 2014-06-02 17:47:36 +02:00
Родитель 580ce710aa 61f115bdeb
Коммит 03868adec4
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -59,7 +59,9 @@ class GroupHelper
if (!is_array($this->openGroup['subjectparams_array'][$parameter])) {
$this->openGroup['subjectparams_array'][$parameter] = array($this->openGroup['subjectparams_array'][$parameter]);
}
$this->openGroup['subjectparams_array'][$parameter][] = $activity['subjectparams_array'][$parameter];
$this->openGroup['subjectparams_array'][$parameter] = array_unique($this->openGroup['subjectparams_array'][$parameter]);
}
} else {
if (!empty($this->openGroup)) {