Fix group-join request rejections
This commit is contained in:
parent
831e9db7ec
commit
6d9ea620a3
@ -76,18 +76,15 @@ class Group_join_queue extends Managed_DataObject
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Abort the pending group join...
|
* Abort the pending group join...
|
||||||
*
|
|
||||||
* @param User_group $group
|
|
||||||
*/
|
*/
|
||||||
function abort()
|
function abort()
|
||||||
{
|
{
|
||||||
$profile = $this->getMember();
|
$profile = $this->getMember();
|
||||||
$group = $this->getGroup();
|
$group = $this->getGroup();
|
||||||
if ($request) {
|
|
||||||
if (Event::handle('StartCancelJoinGroup', array($profile, $group))) {
|
if (Event::handle('StartCancelJoinGroup', array($profile, $group))) {
|
||||||
$this->delete();
|
$this->delete();
|
||||||
Event::handle('EndCancelJoinGroup', array($profile, $group));
|
Event::handle('EndCancelJoinGroup', array($profile, $group));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user