Skip to content

Commit

Permalink
fix typo in Geolocation.php
Browse files Browse the repository at this point in the history
  • Loading branch information
voku authored Jul 15, 2023
1 parent 3712172 commit 8fba283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Geolocation.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ protected function doCall(array $parameters = array())
curl_setopt($curl, CURLOPT_URL, $this->createUrl($parameters));
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_TIMEOUT, 10);
if (ini_get('open_basedir') == '' && ini_get('safe_mode' == 'Off')) {
if (ini_get('open_basedir') == '' && ini_get('safe_mode') == 'Off') {
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
}

Expand Down

0 comments on commit 8fba283

Please sign in to comment.