Skip to content

Commit 36255ac

Browse files
committed
Merge pull request #6469 from ProcessMaker/bugfix/FOUR-14542
[36258 ]Interstitial pages load twice
1 parent 294c7b7 commit 36255ac

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
@@ -891,11 +891,10 @@ public function getVersionDefinitions($forceParse = false, $engine = null)
891891
public function notifyProcessUpdated($eventName)
892892
{
893893
$event = new ProcessUpdated($this, $eventName);
894-
event($event);
895894
if ($this->parentRequest) {
896895
$this->parentRequest->notifyProcessUpdated($eventName);
897-
event($event);
898896
}
897+
event($event);
899898
}
900899

901900
/**

0 commit comments

Comments
 (0)