View | Details | Raw Unified | Return to bug 30068
Collapse All | Expand All

(-)src/org/apache/taglibs/standard/tag/common/xml/XPathUtil.java (-1 / +2 lines)
Lines 633-639 Link Here
633
        boolean whetherOrigXPath = true;
633
        boolean whetherOrigXPath = true;
634
        
634
        
635
        // If contextNode is not null then  just pass the values to Xalan XPath
635
        // If contextNode is not null then  just pass the values to Xalan XPath
636
        if ( n != null ) {
636
        // unless this is an expression that starts off with an xml document 
637
        if ( n != null && !xpath.startsWith("$") ) {
637
            return n;
638
            return n;
638
        }
639
        }
639
        
640
        

Return to bug 30068