After a migration from Play 2.0.4 to Play 2.1.1 I get the following error:
[error] /home/xxx/project/app/controllers/Application.scala:489: type mismatch;
[error] found : play.api.data.Form[contents.Entry]
[error] required: play.data.Form[contents.Entry]
[error] Ok(views.html.shareKnowledge(contentForm, loadEntries(Option(request.user.id), Option(request.user.id), None, None), Map("deleteButton"->"show")))
The corresponding line in the HTML template is
@(contentForm: Form[contents.Entry], entries: Array[contents.Entry], streamDisplayOptions: Map[String,String])
I simply passed a form...
I read http://www.playframework.com/documentation/2.1.0/Migration but I still do not know how to fix it.