-
Bug
-
Resolution: Fixed
-
None
in the command.php you are not closing your $curl
$data = curl_exec($curl);
|
should be
$data = curl_exec($curl);
|
curl_close($curl);
|
in the command.php you are not closing your $curl
$data = curl_exec($curl);
|
should be
$data = curl_exec($curl);
|
curl_close($curl);
|