Yep,

When you go on https://jira.jboss.org/jira/browse/JBPM-1913, at the bottom of 
the page, somebody says "Include patches from SOA-1052" ==> SOA-1052 is here: 

https://jira.jboss.org/jira/browse/SOA-1052

and on the SOA-1052 page, there is a file named "jbpm-console.war.diff (11 kb)".

When you open this file, you have all the lines that you need to replace in 
your 6 .xhtml files.

For example,

+++ jbpm-console.war/app/procdef.xhtml  2009-01-07 10:43:13.000000000 +0000
  | -    <ga:parameter name="fr" target="#{filter_running}" default="true"/>
  | +    <ga:parameter name="fr" target="#{filter_running}" default="${true}">
  | +        <f:converter converterId="javax.faces.Boolean"/>
  | +    </ga:parameter>

It means you need to replace the line 

-    <ga:parameter name="fr" target="#{filter_running}" default="true"/>

by

+    <ga:parameter name="fr" target="#{filter_running}" default="${true}">
  | +        <f:converter converterId="javax.faces.Boolean"/>
  | +    </ga:parameter>

in 

jbpm-console.war/app/procdef.xhtml

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4215687#4215687

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4215687
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to