From: Arun Persaud Date: Thu, 17 Nov 2011 05:36:04 +0000 (-0800) Subject: BUGFIX: make "It's your turn in ..." a comma separated list X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da63cd918a46e4ce8916c21b0b20bf8ef1bf5a7a;p=e-DoKo.git BUGFIX: make "It's your turn in ..." a comma separated list --- diff --git a/include/functions.php b/include/functions.php index 0313bed..9d9856b 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1225,13 +1225,17 @@ function display_user_menu($id) echo "\n
\n "; echo _('It\'s your turn in these games').":\n"; } + else + { + echo ", "; + } $i++; echo " game ".DB_format_gameid($r[1])." \n"; if($i>4) { - echo " ...\n"; + echo ", ...\n"; break; } }