streams/Zotlabs/Update/_1103.php
2021-12-03 14:01:39 +11:00

15 lines
279 B
PHP

<?php
namespace Zotlabs\Update;
class _1103
{
public function run()
{
$x = curl_version();
if (stristr($x['ssl_version'], 'openssl')) {
set_config('system', 'curl_ssl_ciphers', 'ALL:!eNULL');
}
return UPDATE_SUCCESS;
}
}