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

namespace Zotlabs\Update;

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


}