1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-16 20:41:27 +02:00

Missing event triggering after sending to a single person. Append ID of inserted row to event data.

This commit is contained in:
Lóna Lore
2015-03-04 16:25:36 +01:00
parent 4c68127618
commit 5744cf5514

View File

@@ -211,7 +211,8 @@ class private_message
if($pmid = $sql->insert('private_msg', $info))
{
e107::getEvent()->trigger('user_pm_sent', $info);
$info['pm_id'] = $pmid;
e107::getEvent()->trigger('user_pm_sent', $info);
if($class == FALSE)
{
$toclass .= $u['user_name'].', ';
@@ -244,6 +245,8 @@ class private_message
$info['pm_to'] = intval($vars['to_info']['user_id']); // Sending to a single user now
if($pmid = $sql->insert('private_msg', $info))
{
$info['pm_id'] = $pmid;
e107::getEvent()->trigger('user_pm_sent', $info);
if(check_class($this->pmPrefs['notify_class'], $vars['to_info']['user_class']))
{
set_time_limit(30);