Changeset 28256


Ignore:
Timestamp:
2013-09-11T17:26:25+12:00 (11 years ago)
Author:
sjm84
Message:

Don't call this if name is null

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/core/TransformingReceptionist.java

    r27999 r28256  
    11021102
    11031103        }
    1104         Document finalDoc = GSXSLT.mergedXSLTDocumentCascade(name, (String) this.config_params.get(GSConstants.SITE_NAME), collection, (String) this.config_params.get(GSConstants.INTERFACE_NAME), base_interfaces, _debug);
     1104       
     1105        if(name != null)
     1106        {
     1107            Document finalDoc = GSXSLT.mergedXSLTDocumentCascade(name, (String) this.config_params.get(GSConstants.SITE_NAME), collection, (String) this.config_params.get(GSConstants.INTERFACE_NAME), base_interfaces, _debug);
     1108        }
    11051109        return finalDoc;
    11061110    }
Note: See TracChangeset for help on using the changeset viewer.