Skip to content

Commit

Permalink
Merge pull request #3829 from davecivicrm/CRM-14126
Browse files Browse the repository at this point in the history
CRM-14126 - Correct problem with isRedirectSupported() returning an erro...
  • Loading branch information
davecivicrm committed Aug 13, 2014
2 parents f5dfaeb + 8c63340 commit 95023ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Utils/HttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ protected function createCurl($remoteFile) {
* @return bool
*/
public function isRedirectSupported() {
return (ini_get('open_basedir') == '') && (ini_get('safe_mode') == 'Off' || ini_get('safe_mode') === FALSE);
return (ini_get('open_basedir') == '') && (ini_get('safe_mode') == 'Off' || ini_get('safe_mode') == '' || ini_get('safe_mode') === FALSE);
}

}

0 comments on commit 95023ed

Please sign in to comment.