Changeset 16690


Ignore:
Timestamp:
2008-08-08T15:18:47+12:00 (16 years ago)
Author:
max
Message:

Fix the missing space and double quotes in the Doctype output.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • greenstone3/trunk/src/java/org/greenstone/gsdl3/util/XMLConverter.java

    r16688 r16690  
    207207        String sid  = dt.getSystemId();
    208208       
    209         String doctype_str = "<!DOCTYPE " + dt.getName() + " PUBLIC \"" + pid + "\"" + sid + "\">\n";
     209        String doctype_str = "<!DOCTYPE " + dt.getName() + " PUBLIC \"" + pid + "\" \"" + sid + "\">\n";
    210210       
    211211        xmlRepresentation.append(doctype_str);
Note: See TracChangeset for help on using the changeset viewer.