Replies: 1 comment 3 replies
-
|
Could you send a PR for this? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
In GdDriver.php, line 91, there is an issue where PHP backticks are being used:
{$path} : {$throwable->getMessage()}Backticks in PHP execute a shell command, they do not interpolate strings.
As a result, PHP is trying to run this as a shell command instead of producing the expected message.
It should likely be changed to:
"{$path} : {$throwable->getMessage()}"
This way it correctly interpolates the variables into a string rather than attempting command execution.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions