Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public static Component invoke(PageContext pc, String name, String md5, Struct s
Component comp=null;
try {
comp = pc.loadComponent(name);
if(!ComponentUtil.md5(comp).equals(md5)){
SystemOut.printDate(pc.getConfig().getErrWriter(),"component ["+name+"] in this enviroment has not the same interface as the component to load, it is possible that one off the components has Functions added dynamicly.");
if(!ComponentUtil.md5(comp).equals(md5)){
SystemOut.printDate(pc.getConfig().getErrWriter(),"Failed to evaluate component ["+name+"], the component's interface does not match the data passed. The component's definition has changed, or one of the public members was added dynamically.");
//throw new ExpressionException("component ["+name+"] in this enviroment has not the same interface as the component to load");
}
}
Expand Down