Paul Nock a écrit :
> 
> Hmmm...
> Is your patch correct?
> 
> I see it's changed to...
> 
>     private boolean isValidName (String name) {
>         if (name != null) {
>             return false;
>         }
>     .....
> 
> I found my stylesheets no longer had <xsl:param>s working properly with the
> 20010618104654 C1 build.  Looking at the code, this would seem to be the
> correct check:
>     private boolean isValidName (String name) {
>         if (name == null) {
>             return false;
>         }
>         .....
> 
> With the second version, my stylesheets seem to work OK again.
> 
> Paul
You're totally right. That was a typo from me :(
It's corrected in CVS the right way now.

Thanks and sorry for the incovenience.
-- 
Sylvain Wallez
Anyware Technologies - http://www.anyware-tech.com

---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>

Reply via email to