N°7244 Fix setup ContextTag init (#609)

This commit is contained in:
Pierre Goiffon
2024-02-14 10:51:52 +01:00
committed by GitHub
parent bec5e250a5
commit 41eb927480
2 changed files with 29 additions and 5 deletions

View File

@@ -285,6 +285,12 @@ on the page's parameters
*/
public function Run()
{
/**
* @since 3.2.0 Add the ContextTag init
* @noinspection PhpUnusedLocalVariableInspection
*/
$oContextTag = new ContextTag(ContextTag::TAG_SETUP);
$sOperation = utils::ReadParam('operation');
$this->aParameters = utils::ReadParam('_params', array(), false, 'raw_data');
$this->aSteps = json_decode(utils::ReadParam('_steps', '[]', false, 'raw_data'), true /* bAssoc */);