aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Rmagic.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-07-27 22:28:30 -0700
committerredmatrix <git@macgirvin.com>2016-07-27 22:28:30 -0700
commitbe1ffca6f41cef79c481ce58a2cd3c5fc16fd8b2 (patch)
tree22c4a2f53fdc03c634132a51a8743f0a31c95e09 /Zotlabs/Module/Rmagic.php
parent987eb90e18149ef34b1e800c458efc4049e15f7d (diff)
downloadvolse-hubzilla-be1ffca6f41cef79c481ce58a2cd3c5fc16fd8b2.tar.gz
volse-hubzilla-be1ffca6f41cef79c481ce58a2cd3c5fc16fd8b2.tar.bz2
volse-hubzilla-be1ffca6f41cef79c481ce58a2cd3c5fc16fd8b2.zip
fix italian strings (messed up by rtl variable); and finish removing openid from core
Diffstat (limited to 'Zotlabs/Module/Rmagic.php')
-rw-r--r--Zotlabs/Module/Rmagic.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/Zotlabs/Module/Rmagic.php b/Zotlabs/Module/Rmagic.php
index 26b0c46a6..e144c9376 100644
--- a/Zotlabs/Module/Rmagic.php
+++ b/Zotlabs/Module/Rmagic.php
@@ -32,18 +32,6 @@ class Rmagic extends \Zotlabs\Web\Controller {
$arr = array('address' => $address);
call_hooks('reverse_magic_auth', $arr);
- try {
- require_once('library/openid/openid.php');
- $openid = new \LightOpenID(z_root());
- $openid->identity = $address;
- $openid->returnUrl = z_root() . '/openid';
- $openid->required = array('namePerson/friendly', 'namePerson');
- $openid->optional = array('namePerson/first','media/image/aspect11','media/image/default');
- goaway($openid->authUrl());
- } catch (\Exception $e) {
- notice( t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.').'<br /><br >'. t('The error message was:').' '.$e->getMessage());
- }
-
// if they're still here...
notice( t('Authentication failed.') . EOL);
return;