Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] Remove unused typo3 option 'curlUse' #19

Merged
merged 1 commit into from
Jun 7, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions Classes/OpenidService.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,20 +75,6 @@ class OpenidService extends AbstractService
*/
protected static $openIDLibrariesIncluded = false;

/**
* Constructs the OpenID authentication service.
*/
public function __construct()
{
// Auth_Yadis_Yadis::getHTTPFetcher() will use a cURL fetcher if the functionality
// is available in PHP, however the TYPO3 setting is not considered here:
if (!defined('Auth_Yadis_CURL_OVERRIDE')) {
if (!$GLOBALS['TYPO3_CONF_VARS']['SYS']['curlUse']) {
define('Auth_Yadis_CURL_OVERRIDE', true);
}
}
}

/**
* Checks if service is available,. In case of this service we check that
* prerequisites for "PHP OpenID" libraries are fulfilled:
Expand Down