Browse Source

verify Started a fix for ninja's fortunes

This will require an update to the ninja framework in
addition to this change in order for it to pass validation.
Presently, the framework is no escaping the apostrophe.
Mike Smith 11 years ago
parent
commit
d55e523d03

+ 1 - 1
ninja/src/main/java/hello/views/HelloFortuneController/index.ftl.html

@@ -12,7 +12,7 @@
 		<#list fortunes as fortune>
 		<tr>
 			<td>${fortune.id}</td>
-			<td>${fortune.message?html}</td>
+			<td>${fortune.message}</td>
 		</tr>
 		</#list>
 	</table>