Fix fetchInviteToken regex

This commit is contained in:
buddh4 2019-02-21 23:01:28 +01:00
parent aadc743b23
commit a454436608

View File

@ -27,7 +27,7 @@ class HumHubHelper extends Module
}
$re = [];
preg_match('/registration&token=3D([a-zA-Z0-9]*)"/', $mail, $re);
preg_match('/registration&token=3D([a-zA-Z0-9]*)/', $mail, $re);
if(!isset($re[1])) {
preg_match('/registration&token=([a-zA-Z0-9]*)/', $mail, $re);