aboutsummaryrefslogtreecommitdiff
path: root/lib/openid_consumer.php
blob: 3dfc09a1e9f09cd6ca7f9869dffcdcd24528898c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * OpenID library loader for consumers
 */

$openid_path = dirname(dirname(__FILE__)) . '/vendors/php-openid/';
$path = ini_get('include_path');
$path = $openid_path . PATH_SEPARATOR . $path;
ini_set('include_path', $path);

require_once 'Auth/OpenID.php';
require_once 'Auth/OpenID/Consumer.php';
require_once 'Auth/OpenID/SReg.php';
require_once 'Auth/OpenID/AX.php';