Show order history for Contacts who are beneficiaries or requesters,
instead of only the former.
global $contact_roles, $parcel_sizes, $parcel_contents;
if (! $contact) $contact = new Contact;
- else if ($contact->getRole() & $GLOBALS['ROLE_BENEFICIARY']) {
+ else if ($contact->getRole() & ($GLOBALS['ROLE_BENEFICIARY'] | $GLOBALS['ROLE_REQUESTER'])) {
$state_mask = $GLOBALS['STATE_ANY'];
$state_mask &= ~$GLOBALS['STATE_DELIVERED'];
$state_mask &= ~$GLOBALS['STATE_CANCELLED'];