Bug #23356
closedviewlistrecord of sys_action (taskcenter) with broken pagebrowser link
0%
Description
When listing records as a User-Task in task center, the pagebrowser is not working at all.
I figured, that the links which are created with listURL from the class.db_list.inc class are not set up correctly.
the listURL() function puzzles together the following beginning of the URL (did not post the irrelevant rest):
$GLOBALS['BACK_PATH'] . $this->script.'?id='.(strcmp($altId,'')?$altId:$this->id)
within the sys_action class function 'viewRecordList' $this->script is initiated with:
t3lib_div::getIndpEnv('REQUEST_URI')
returning something like this:
/typo3/mod.php?M=user_task&SET[function]=sys_action.tx_sysaction_task&show=20
already containing a questionmark.
when commenting out the line:
$dblist->script = t3lib_div::getIndpEnv('REQUEST_URI');
the recordbrowser works, but the taskcenter tasklist is gone. so I guess the problem is how the task centerlist and the actual task are rendered and that it does not fit the listURL() parameters to call the taskcenter script.
(issue imported from #M15364)
Files