Fixed backwards logic of cancellation requests
This commit is contained in:
@@ -202,7 +202,7 @@ class OrganisationRegistrationController extends SimpleController
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Check the user is registrant of this organisation
|
// Check the user is registrant of this organisation
|
||||||
if ($organisation->registrant_id == $currentUser->id) {
|
if ($organisation->registrant_id != $currentUser->id) {
|
||||||
throw new ForbiddenException();
|
throw new ForbiddenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -657,7 +657,7 @@ class OrganisationRegistrationController extends SimpleController
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Check the user is registrant of this organisation
|
// Check the user is registrant of this organisation
|
||||||
if ($organisation->registrant_id == $currentUser->id) {
|
if ($organisation->registrant_id != $currentUser->id) {
|
||||||
throw new ForbiddenException();
|
throw new ForbiddenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user