You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Sylvain Wallez <sy...@anyware-tech.com> on 2001/06/19 09:42:43 UTC

Re: Sylvain: was ... RE: broken build?


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: <co...@xml.apache.org>
For additional commands, e-mail: <co...@xml.apache.org>