Actions
Bug #80001
closedWorkspace email notification contains preview link ony to the first page in the list of changed data
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Workspaces
Target version:
-
Start date:
2017-02-24
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
7
PHP Version:
5.5
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
The workspace email notification to users after completion the DataHandler operations contain the preview link only to the first page in the set of changed data.
Example:
Imagine, there has been changes for the following content elements within a workspace:
"pages:234, pages:1723, tt_content:2410";
Then the following lines of code wil explode the first {table:uid} occurrence for generating the preview link (here page with uid 234).
SYSEXT:version/Classes/Hook/DataHandlerHook.php::notifyStageChange
list($elementTable, $elementUid) = explode(':', $elementName); $elementUid = (int)$elementUid;
IS STATE:
The remaining records in the dataset are ignored. This is not correct!
SHOULD BE STATE:
The preview links should be generated for all the changed pages or pages containing changed records.
Actions