- Use '/' key to quickly access this field.
- Enter a name of repository, or repository group for quick search.
- Prefix query to allow special search:
user:admin, to search for usernames, always global
user_group:devops, to search for user groups, always global
commit:efced4, to search for commits, scoped to repositories or groups
file:models.py, to search for file paths, scoped to repositories or groups
For advanced full text search visit: repository search
adminlog("Scheduled tweet posted for user ".$t->username,MTS_TWITTER,MTA_ADD);
$t->status='success';
}
else
{
// Well, shit. Something went wrong. Log it.
adminlog("Error $ret_code posting scheduled tweet ".$t->id.' with return value '.$ret,MTS_TWITTER,MTA_ADD);
$t->status='error';
}
// Unlock tweet, update db.
$mtdb->query("UPDATE twitter_post SET status = '".mysqli_real_escape_string($mtdb->link,$t->status)."' WHERE status = 'locked' AND id = ".(int)$t->id,false);