Skip to content

Commit

Permalink
Fixed iise #13476: Unable to send individual remind and invite mails
Browse files Browse the repository at this point in the history
  • Loading branch information
lacrioque committed Mar 15, 2018
1 parent e3289cf commit f16a7d5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions application/controllers/admin/tokens.php
Expand Up @@ -2583,6 +2583,8 @@ protected function getSQLreminderdelaycondition($bEmail)
protected function getTokenIds()
{
$aTokenIds = Yii::app()->request->getPost('tokenids', false);
$aTokenIds = $aTokenIds === false ? Yii::app()->request->getQuery('tokenids', false) : $aTokenIds;

if (!empty($aTokenIds)) {
$aTokenIds = explode('|', $aTokenIds);
$aTokenIds = array_filter($aTokenIds);
Expand Down

0 comments on commit f16a7d5

Please sign in to comment.