im getting this error when im trying to delete data or recent topics extension
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/db/migrator.php on line 662: Undefined array key 17
i checked line but i dont see anything wrong , what should i do
Code: Select all
$result = $this->run_step($steps[$step], $last_result, $revert);
Code: Select all
$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: Select all
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,
);
}