fix message quoting

This commit is contained in:
Nathan Coad
2016-06-24 14:35:57 +10:00
parent 3bdaa51657
commit 087f0405ef

View File

@@ -956,8 +956,8 @@ function _booking_studygroups_update_preallocate($group, $group_mapping, &$sessi
//work out the next session to assign the other person to
$next_session = ($session_id % $group->booking_num_group_sessions) + 1;
$calculation_messages[] = t('Keeping non leader/helper/committee person with id !id separate from !separate by " . "
assigning !id to session !session and !separate to session !nextsession (currently with !num people).',
$calculation_messages[] = t('Keeping non leader/helper/committee person with id !id separate from !separate by ' .
'assigning !id to session !session and !separate to session !nextsession (currently with !num people).',
array('!id' => $person->booking_node_id, '!session' => $person->booking_session_id, '!nextsession' => $next_session,
'!separate' => $keep_separate_id, '!num' => $session_count[$session_id]['total'],
'!separatenum' => $session_count[$next_session]['total'])