Adding Groups validation in selfservice value based

This commit is contained in:
Jenny Murillo
2016-03-23 19:16:08 -04:00
parent 0cf59dff9e
commit 9f32bd7fbb
3 changed files with 21 additions and 10 deletions

View File

@@ -27,7 +27,9 @@ curl_setopt( $gCurl, CURLOPT_CONNECTTIMEOUT, 0);
curl_setopt($gCurl, CURLOPT_SSL_VERIFYHOST, false);
if (curl_exec ( $gCurl ) === false) {
echo 'Curl error: ' . curl_error ( $gCurl );
echo 'Curl error: ' . curl_error ( $gCurl );
error_log(Bootstrap::LoadTranslation('ID_SERVER_COMMUNICATION_ERROR'));
die ();
} else {
$gCurl_response = curl_exec ( $gCurl );
curl_close ( $gCurl );