diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-02-19 13:22:27 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-02-19 13:22:27 +0000 |
commit | 3bc4b810c11d80474714060b7f10236d31edfae3 (patch) | |
tree | a8e587be9f5f6eeda1b2b7a492d83e9c67cb5c7d | |
parent | 59e3aa6f0b24df25e525eeec12aefc04e0e61e5d (diff) | |
parent | 234be3f4030077fa392079ddb89655ed3d2324e0 (diff) |
Merge remote-tracking branch 'openaustralia_github/categorise_escaping_fix' into develop
-rw-r--r-- | app/views/request_game/play.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/request_game/play.rhtml b/app/views/request_game/play.rhtml index eedf19ca2..3bd23e306 100644 --- a/app/views/request_game/play.rhtml +++ b/app/views/request_game/play.rhtml @@ -11,7 +11,7 @@ <tr> <td> <%= c += 1 %>. <td> <td> <%= user_link(classifications.user) %> </td> - <td> <%=pluralize(classifications.cnt, 'request').gsub(" ", " ")%> </td> + <td> <%=pluralize(classifications.cnt, 'request').gsub(" ", " ").html_safe %> </td> </tr> <% end %> </table> @@ -22,7 +22,7 @@ <tr> <td> <%= c += 1 %>. <td> <td> <%= user_link(classifications.user) %> </td> - <td> <%= pluralize(classifications.cnt, 'request').gsub(" ", " ")%> </td> + <td> <%= pluralize(classifications.cnt, 'request').gsub(" ", " ").html_safe %> </td> </tr> <% end %> </table> |