crash backup
Some checks failed
Image optimization / general_image_workflow (push) Has been cancelled
CI / general_module_workflow_php (push) Has been cancelled
CI / general_module_workflow_js (push) Has been cancelled

This commit is contained in:
Dennis Eichhorn 2025-03-21 02:48:18 +00:00
parent e69cc42f5e
commit 8c16c2980b
3 changed files with 7 additions and 7 deletions

View File

@ -240,7 +240,7 @@ final class ApiController extends Controller
->with('tasks/files') ->with('tasks/files')
->with('tasks/tags') ->with('tasks/tags')
->with('tasks/attributes') ->with('tasks/attributes')
->where('id', (int) $request->getData('id')) ->where('id', $request->getDataInt('id') ?? 0)
->execute(); ->execute();
$checklist = new Checklist(); $checklist = new Checklist();

View File

@ -83,7 +83,7 @@ final class BackendController extends Controller
->with('tasks/taskElements/accRelation/relation') ->with('tasks/taskElements/accRelation/relation')
->with('tasks/taskElements/grpRelation') ->with('tasks/taskElements/grpRelation')
->with('tasks/taskElements/grpRelation/relation') ->with('tasks/taskElements/grpRelation/relation')
->where('id', (int) $request->getData('id')) ->where('id', $request->getDataInt('id') ?? 0)
->sort('tasks/due', OrderType::ASC) ->sort('tasks/due', OrderType::ASC)
->execute(); ->execute();
@ -161,7 +161,7 @@ final class BackendController extends Controller
->with('tasks/taskElements/accRelation/relation') ->with('tasks/taskElements/accRelation/relation')
->with('tasks/taskElements/grpRelation') ->with('tasks/taskElements/grpRelation')
->with('tasks/taskElements/grpRelation/relation') ->with('tasks/taskElements/grpRelation/relation')
->where('id', (int) $request->getData('id')) ->where('id', $request->getDataInt('id') ?? 0)
->sort('tasks/due', OrderType::ASC) ->sort('tasks/due', OrderType::ASC)
->execute(); ->execute();

View File

@ -26,12 +26,12 @@ echo $this->data['nav']->render(); ?>
<div class="portlet-body"> <div class="portlet-body">
<div class="form-group"> <div class="form-group">
<label for="iiReceiver"><?= $this->getHtml('To'); ?></label> <label for="iiReceiver"><?= $this->getHtml('To'); ?></label>
<?= $this->getData('accGrpSelector')->render('iReceiver', 'forward', true); ?> <?= $this->data['accGrpSelector']->render('iReceiver', 'forward', true); ?>
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="iObserver"><?= $this->getHtml('CC'); ?></label> <label for="iObserver"><?= $this->getHtml('CC'); ?></label>
<?= $this->getData('accGrpSelector')->render('iCC', 'cc', false); ?> <?= $this->data['accGrpSelector']->render('iCC', 'cc', false); ?>
</div> </div>
<div class="form-group"> <div class="form-group">
@ -61,7 +61,7 @@ echo $this->data['nav']->render(); ?>
</div> </div>
<div class="form-group"> <div class="form-group">
<?= $this->data['editor']->getData('text')?->render('task-editor', 'plain', 'fTask'); ?> <?= $this->data['editor']->data['text']?->render('task-editor', 'plain', 'fTask'); ?>
</div> </div>
</div> </div>
<div class="portlet-foot"> <div class="portlet-foot">
@ -95,4 +95,4 @@ echo $this->data['nav']->render(); ?>
</div> </div>
</div> </div>
<?= $this->getData('accGrpSelector')->getData('popup')?->render(); ?> <?= $this->data['accGrpSelector']->data['popup']?->render(); ?>