usercache is no longer used

This commit is contained in:
redmatrix 2015-12-01 15:51:15 -08:00
parent 78e18fcdcf
commit 1ba74d824b
2 changed files with 4 additions and 5 deletions

View File

@ -382,7 +382,6 @@ require_once('include/api_auth.php');
function api_item_get_user(&$a, $item) {
global $usercache;
// The author is our direct contact, in a conversation with us.
@ -396,11 +395,11 @@ require_once('include/api_auth.php');
$name = $item['author']['xchan_name'];
// Generating a random ID
if (is_null($usercache[$nick]) or !array_key_exists($nick, $usercache))
$usercache[$nick] = mt_rand(2000000, 2100000);
if (! $nick)
$nick = mt_rand(2000000, 2100000);
$ret = array(
'id' => $usercache[$nick],
'id' => $nick,
'name' => $name,
'screen_name' => $nick,
'location' => '', //$uinfo[0]['default-location'],

View File

@ -1 +1 @@
2015-11-30.1232
2015-12-01.1233