From 087f0405ef3651db7dc38905b78300f7405bc4b7 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Fri, 24 Jun 2016 14:35:57 +1000 Subject: [PATCH] fix message quoting --- booking.studygroups.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/booking.studygroups.inc b/booking.studygroups.inc index b611f10..07a5078 100644 --- a/booking.studygroups.inc +++ b/booking.studygroups.inc @@ -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'])