Skip to content
Snippets Groups Projects
Commit 1582ef11 authored by Philipp Gampe's avatar Philipp Gampe Committed by Christian Kuhn
Browse files

[BUGFIX] Remove checked items from Upgrade Analysis

Ignored files require the full path to a file for resurrection,
not just the headline.

Resolves: #79659
Releaes: master
Change-Id: I7f4ea9a0b2080c71dcd7d708c1c0ffccb30f15be
Reviewed-on: https://review.typo3.org/51562


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 53fd04d1
Branches
Tags
No related merge requests found
......@@ -37,7 +37,7 @@ class FilterManager extends AbstractAjaxAction
$files = [];
foreach ($ignoredFiles as $filePath) {
$file = current($documentationFileService->getListEntry($filePath));
$files[] = $file['headline'];
$files[$file['headline']] = $file['filepath'];
}
$this->view->assign('files', $files);
return $this->view->render();
......
<div class="t3js-response">
<f:for each="{files}" as="file">
<f:for each="{files}" as="filepath" key="headline">
<div class="panel-group" role="tablist" aria-multiselectable="false">
<div class="panel panel-default">
<div class="panel-heading" role="tab">
<input type="checkbox" class="t3js-upgradeanalysis-restore pull-left" data-filepath="{file}"
<input type="checkbox" class="t3js-upgradeanalysis-restore pull-left" data-filepath="{filepath}"
title="restore this document"/>
<h3 class="panel-title">
<strong>
{file}</strong>
{headline}</strong>
</h3>
</div>
</div>
......
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