aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1103.php
blob: a32c81fe93fa755a037283c1468e74eb6e2e56af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

namespace Zotlabs\Update;

use Zotlabs\Lib\Config;

class _1103 {
function run() {
	$x = curl_version();
	if(stristr($x['ssl_version'],'openssl'))
		Config::Set('system','curl_ssl_ciphers','ALL:!eNULL');
	return UPDATE_SUCCESS;
}


}