On 11/28/05, Gaet <[EMAIL PROTECTED]> wrote:
> Thanks Michael for the time you have taken to reply me!
>
> I will study your solution deeper...thanks!
You are welcome. And here goes a correction:
Change this:
if (view == null || view.length() == 0 || view.equals(selectedView)) {
return EVAL_BODY_INCLUDE;
}
to this:
if (view == null || view.length() == 0 || view.equals(selectedView)) {
return EVAL_BODY_INCLUDE;
} else {
return SKIP_BODY;
}
Have fun,
Michael.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]