Skip to content

Commit

Permalink
Merge pull request #6469 from ProcessMaker/bugfix/FOUR-14542
Browse files Browse the repository at this point in the history
[36258 ]Interstitial pages load twice
  • Loading branch information
ryancooley committed Mar 27, 2024
2 parents b86880c + fe9cd43 commit 0915ae8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ProcessMaker/Models/ProcessRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -872,11 +872,10 @@ public function getVersionDefinitions($forceParse = false, $engine = null)
public function notifyProcessUpdated($eventName)
{
$event = new ProcessUpdated($this, $eventName);
event($event);
if ($this->parentRequest) {
$this->parentRequest->notifyProcessUpdated($eventName);
event($event);
}
event($event);
}

/**
Expand Down

0 comments on commit 0915ae8

Please sign in to comment.