Skip to content
Snippets Groups Projects
Commit e95c1ee8 authored by Thomas Löffler's avatar Thomas Löffler Committed by Helmut Hummel
Browse files

[BUGFIX] Compare feature is broken

Adding users to Compare list does not work.

Change-Id: I079f0c8cf47213854c1ef358631b6a7c9ecc9260
Resolves: #41233
Releases: 6.0
Reviewed-on: http://review.typo3.org/15377
Reviewed-by: Mattias Nilsson
Reviewed-by: Helmut Hummel
Tested-by: Helmut Hummel
Reviewed-by: Wouter Wolters
Tested-by: Wouter Wolters
parent 879de862
Branches
Tags
No related merge requests found
......@@ -167,6 +167,7 @@ class BackendUserController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionCont
*/
public function addToCompareListAction($uid) {
$this->moduleData->attachUidCompareUser($uid);
$this->moduleDataStorageService->persistModuleData($this->moduleData);
$this->forward('index');
}
......@@ -178,6 +179,7 @@ class BackendUserController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionCont
*/
public function removeFromCompareListAction($uid) {
$this->moduleData->detachUidCompareUser($uid);
$this->moduleDataStorageService->persistModuleData($this->moduleData);
$this->forward('index');
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment