Skip to content

Commit 0915ae8

Browse files
authored
Merge pull request #6469 from ProcessMaker/bugfix/FOUR-14542
[36258 ]Interstitial pages load twice
2 parents b86880c + fe9cd43 commit 0915ae8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ProcessMaker/Models/ProcessRequest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -872,11 +872,10 @@ public function getVersionDefinitions($forceParse = false, $engine = null)
872872
public function notifyProcessUpdated($eventName)
873873
{
874874
$event = new ProcessUpdated($this, $eventName);
875-
event($event);
876875
if ($this->parentRequest) {
877876
$this->parentRequest->notifyProcessUpdated($eventName);
878-
event($event);
879877
}
878+
event($event);
880879
}
881880

882881
/**

0 commit comments

Comments
 (0)