Before trying this fix, please BACKUP your existing file!
assuming this is your lineFINDREPLACE WITH THISNote Most of the devs here will probably disagree with this fix since it alters core code and could possibly cause trouble with future phpBB updates so as Mick suggested, check the extension thread for a fix first
assuming this is your line
Code:
$result = $this->run_step($steps[$step], $last_result, $revert);
Code:
$result = $this->run_step($steps[$step], $last_result, $revert);if (($result !== null && $result !== true) || $step + 1 < count($steps)){return array('result'=> $result,// Move on if the last call finished'step'=> ($result !== null && $result !== true) ? $step : $step + 1,);}
Code:
if (array_key_exists($step, $steps)) {$result = $this->run_step($steps[$step], $last_result, $revert);if (($result !== null && $result !== true) || $step + 1 < count($steps)) {return array('result' => $result,// Move on if the last call finished'step' => ($result !== null && $result !== true) ? $step : $step + 1,);}} else {return array('result' => null,'step' => $step,);}
Statistics: Posted by Helter Skelter — Wed Sep 18, 2024 10:05 pm