We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32fdfb0 commit 0847534Copy full SHA for 0847534
php/EE/RevertableStepProcessor.php
@@ -75,6 +75,10 @@ public function execute() {
75
*/
76
public function rollback() {
77
while ( $this->execution_index >= 0 ) {
78
+ if ( ! array_key_exists( $this->execution_index, $this->steps ) ) {
79
+ $this->execution_index--;
80
+ continue;
81
+ }
82
$step = $this->steps[ $this->execution_index ];
83
$context = $step['context'];
84
try {
0 commit comments