Skip to content

Commit

Permalink
Merge pull request #6378 from ProcessMaker/bug/FOUR-14374
Browse files Browse the repository at this point in the history
Fix PHP Syntax Error in Instance Upgrade Process
  • Loading branch information
ryancooley committed Mar 12, 2024
2 parents dec3e94 + dd4637d commit f6c09c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ProcessMaker/Jobs/SyncGuidedTemplates.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private function importProcess($payload, $assetType)

return $rootLog['newId'];
} catch (Exception $e) {
throw new Exception('Error:', $e->getMessage());
throw new Exception('Error: ' . $e->getMessage());
}
}

Expand Down

0 comments on commit f6c09c2

Please sign in to comment.