1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-12 10:35:20 +02:00

[ticket/11103] Fix sending the user ids to get the username/avatar

PHPBB3-11103
This commit is contained in:
Nathaniel Guse 2012-12-27 10:30:21 -06:00
parent 5a8520da62
commit 192039a9e0
6 changed files with 6 additions and 6 deletions

View File

@ -161,7 +161,7 @@ class phpbb_notification_type_pm extends phpbb_notification_type_base
*/
public function users_to_query()
{
return array($this->data['from_user_id']);
return array($this->get_data('from_user_id'));
}
/**

View File

@ -205,7 +205,7 @@ class phpbb_notification_type_report_pm extends phpbb_notification_type_pm
*/
public function users_to_query()
{
return array($this->data['reporter_id']);
return array($this->get_data('reporter_id'));
}
/**

View File

@ -130,7 +130,7 @@ class phpbb_notification_type_report_pm_closed extends phpbb_notification_type_p
*/
public function users_to_query()
{
return array($this->data['closer_id']);
return array($this->get_data('closer_id'));
}
/**

View File

@ -172,7 +172,7 @@ class phpbb_notification_type_report_post extends phpbb_notification_type_post_i
*/
public function users_to_query()
{
return array($this->data['reporter_id']);
return array($this->get_data('reporter_id'));
}
/**

View File

@ -130,7 +130,7 @@ class phpbb_notification_type_report_post_closed extends phpbb_notification_type
*/
public function users_to_query()
{
return array($this->data['closer_id']);
return array($this->get_data('closer_id'));
}
/**

View File

@ -208,7 +208,7 @@ class phpbb_notification_type_topic extends phpbb_notification_type_base
*/
public function users_to_query()
{
return array($this->data['poster_id']);
return array($this->get_data('poster_id'));
}
/**