Fix typo in new http_request() method, fixes deprecated options handling
This commit is contained in:
parent
68fc690d8c
commit
e4bcac4650
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class libkolab extends rcube_plugin
|
|||
$http_config = (array) $rcube->config->get('kolab_http_request');
|
||||
|
||||
// deprecated configuration options
|
||||
if (empty($$http_config)) {
|
||||
if (empty($http_config)) {
|
||||
foreach (array('ssl_verify_peer', 'ssl_verify_host') as $option) {
|
||||
$value = $rcube->config->get('kolab_' . $option, true);
|
||||
if (is_bool($value)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue