Skip to content

Commit 22d80be

Browse files
committed
remove full shell escape
1 parent 133cf04 commit 22d80be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LaunchDarkly/Impl/Integrations/CurlEventPublisher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private function createCurlArgs(string $payload): string
100100
private function makeCurlRequest(string $args): bool
101101
{
102102
$cmd = $this->_curl . " " . $args . ">> /dev/null 2>&1 &";
103-
shell_exec(escapeshellcmd($cmd));
103+
shell_exec($cmd);
104104
return true;
105105
}
106106

0 commit comments

Comments
 (0)