Move to Network
Move to network namespace. Get rid of q() and try to get used to [ ] instead of array()
This commit is contained in:
parent
9c7b6d9d5f
commit
2bbfc0640f
|
@ -2,13 +2,13 @@
|
||||||
/**
|
/**
|
||||||
* @file src/Protocol/OAuth1.php
|
* @file src/Protocol/OAuth1.php
|
||||||
*/
|
*/
|
||||||
namespace Friendica\Protocol;
|
namespace Friendica\Network;
|
||||||
|
|
||||||
use Friendica\App;
|
use Friendica\App;
|
||||||
use Friendica\Core\PConfig;
|
use Friendica\Core\PConfig;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use Friendica\Database\DBM;
|
use Friendica\Database\DBM;
|
||||||
use Friendica\Protocol\FKOAuthDataStore;
|
use Friendica\Network\FKOAuthDataStore;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
require_once "library/OAuth1.php";
|
require_once "library/OAuth1.php";
|
||||||
|
@ -70,10 +70,7 @@ class FKOAuth1 extends OAuthServer
|
||||||
$_SESSION['cid'] = $a->cid;
|
$_SESSION['cid'] = $a->cid;
|
||||||
}
|
}
|
||||||
|
|
||||||
dba::q("UPDATE `user` SET `login_date` = '%s' WHERE `uid` = %d",
|
dba::update('user', ['login_date' => datetime_convert()], ['uid' => $_SESSION['uid']]);
|
||||||
dbesc(datetime_convert()),
|
|
||||||
intval($_SESSION['uid'])
|
|
||||||
);
|
|
||||||
|
|
||||||
call_hooks('logged_in', $a->user);
|
call_hooks('logged_in', $a->user);
|
||||||
}
|
}
|
|
@ -5,7 +5,7 @@
|
||||||
* Based on oauth2-php <http://code.google.com/p/oauth2-php/>
|
* Based on oauth2-php <http://code.google.com/p/oauth2-php/>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
namespace Friendica\Protocol;
|
namespace Friendica\Network;
|
||||||
|
|
||||||
use Friendica\App;
|
use Friendica\App;
|
||||||
use Friendica\Core\Config;
|
use Friendica\Core\Config;
|
Loading…
Reference in a new issue