New from rebase

more adjustments after rebase
This commit is contained in:
Adam Magness 2017-11-20 11:14:35 -05:00
parent 9622dedaeb
commit 1eb2e541f6
2 changed files with 16 additions and 4 deletions

View File

@ -1054,15 +1054,23 @@ class GlobalContact
}
}
public static function getRandomUrl() {
$r = q("SELECT `url` FROM `gcontact` WHERE `network` = '%s'
/**
* @return string
*/
public static function getRandomUrl()
{
$r = q(
"SELECT `url` FROM `gcontact` WHERE `network` = '%s'
AND `last_contact` >= `last_failure`
AND `updated` > UTC_TIMESTAMP - INTERVAL 1 MONTH
ORDER BY rand() LIMIT 1",
dbesc(NETWORK_DFRN));
dbesc(NETWORK_DFRN)
);
if (DBM::is_result($r))
if (DBM::is_result($r)) {
return dirname($r[0]['url']);
}
return '';
}
}

View File

@ -17,6 +17,10 @@ require_once 'plugin.php';
*/
class User
{
/**
* @param object $uid user to remove
* @return void
*/
public static function remove($uid)
{
if (!$uid) {