Skip to content

Commit

Permalink
Fixed issue: missing semi-colons
Browse files Browse the repository at this point in the history
  • Loading branch information
jcleeland committed Jul 10, 2012
1 parent 236f778 commit c82c9cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/controllers/admin/participantsaction.php
Expand Up @@ -1742,7 +1742,7 @@ function addToToken()
printf($clang->gT("%s participants have been copied to the survey token table"), $response['success']);
if($response['duplicate']>0) {
echo "\r\n";
printf($clang->gT("%s entries were not copied because they already existed"), $response['duplicate'])
printf($clang->gT("%s entries were not copied because they already existed"), $response['duplicate']);
}
}

Expand All @@ -1765,7 +1765,7 @@ function addToTokenattmap()
printf($clang->gT("%s participants have been copied to the survey token table"), $response['success']);
if($response['duplicate']>0) {
echo "\r\n";
printf($clang->gT("%s entries were not copied because they already existed"), $response['duplicate'])
printf($clang->gT("%s entries were not copied because they already existed"), $response['duplicate']);
}
}

Expand Down

0 comments on commit c82c9cb

Please sign in to comment.