Undo check ip condition otherwise the script stop to work see BT#5137

skala
Julio Montoya 12 years ago
parent 2b9f2bb501
commit cefe88f8aa
  1. 4
      main/webservices/registration.soap.php

@ -62,9 +62,9 @@ function WSHelperVerifyKey($params) {
error_log("checkip ".intval($check_ip));
if ($check_ip) {
$security_key = $ip.$_configuration['security_key'];
} else {
$security_key = $_configuration['security_key'];
} else {
$security_key = $ip.$_configuration['security_key'];
}
$result = api_is_valid_secret_key($secret_key, $security_key);

Loading…
Cancel
Save