diff --git a/Tools/AGSHtml.m b/Tools/AGSHtml.m index e26ad4442..92dd3beb6 100644 --- a/Tools/AGSHtml.m +++ b/Tools/AGSHtml.m @@ -705,16 +705,16 @@ static NSMutableSet *textNodes = nil; if ([[children name] isEqual: @"version"] == YES) { [buf appendString: indent]; - [buf appendString: @"

Version: "]; - [self outputNode: [children children] to: buf]; + [buf appendString: @"

Version: "]; + [self outputText: [children children] to: buf]; [buf appendString: @"

\n"]; children = firstElement([children next]); } if ([[children name] isEqual: @"date"] == YES) { [buf appendString: indent]; - [buf appendString: @"

Date: "]; - [self outputNode: [children children] to: buf]; + [buf appendString: @"

Date: "]; + [self outputText: [children children] to: buf]; [buf appendString: @"

\n"]; children = firstElement([children next]); }