Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Commit

Permalink
fix(invitation): wrong invitation token string
Browse files Browse the repository at this point in the history
Signed-off-by: Domingo Oropeza <doropeza@teclib.com>
  • Loading branch information
DIOHz0r authored and btry committed Mar 29, 2018
1 parent 7a9e9f9 commit 053eee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/notificationtargetinvitation.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public static function getAdditionalDatasForTemplate(NotificationTarget $event)

$user = new User();
$user->getFromDB($invitation->getField('users_id'));
$encodedRequest = $invitation->getEnrollmentUrl($user, $invitation->getField('invitatoin_token'), $invitation->getField('entities_id'));
$encodedRequest = $invitation->getEnrollmentUrl($user, $invitation->getField('invitation_token'), $invitation->getField('entities_id'));

// Fill the template
$event->data['##flyvemdm.qrcode##'] = Document::getImageTag($document->getField('tag'));
Expand Down

0 comments on commit 053eee0

Please sign in to comment.