Corrected function name

This commit is contained in:
Michael 2018-01-12 23:43:08 +00:00
parent 06751470ce
commit b638ed9e86
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ class Diaspora
*
* @return array of relay servers
*/
public static function participationsForThread($thread, $contacts)
public static function participantsForThread($thread, $contacts)
{
$r = dba::p("SELECT `contact`.`batch`, `contact`.`id`, `contact`.`name`, `contact`.`network`,
`fcontact`.`batch` AS `fbatch`, `fcontact`.`network` AS `fnetwork` FROM `participation`

View File

@ -525,7 +525,7 @@ class Notifier {
// Fetch the participation list
// The function will ensure that there are no duplicates
$r1 = Diaspora::ParticipationsForThread($item_id, $r1);
$r1 = Diaspora::participantsForThread($item_id, $r1);
}