mirror of
https://github.com/e107inc/e107.git
synced 2025-02-06 15:24:46 +01:00
14 lines
502 B
PHP
14 lines
502 B
PHP
<?php
|
|
/**
|
|
* HybridAuth
|
|
* http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth
|
|
* (c) 2009-2015, HybridAuth authors | http://hybridauth.sourceforge.net/licenses.html
|
|
*/
|
|
// ------------------------------------------------------------------------
|
|
// HybridAuth End Point
|
|
// ------------------------------------------------------------------------
|
|
$_REQUEST['hauth_done'] = 'Live';
|
|
require_once( "Hybrid/Auth.php" );
|
|
require_once( "Hybrid/Endpoint.php" );
|
|
Hybrid_Endpoint::process();
|