mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 15:33:43 +00:00
* GSWeb.framework/GSWBrowser.m
o fixed double HTML escaping bug (reported by David Ayers) git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@20960 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
848c80d39c
commit
a55b140ff5
2 changed files with 10 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
|||
2005-03-22 Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
* GSWeb.framework/GSWBrowser.m
|
||||
o fixed double HTML escaping bug (reported by David Ayers)
|
||||
|
||||
2005-03-21 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
* GSWeb.framework/GSWRequest.m
|
||||
o cleanup GSMime access and avoid unnecessary setting of
|
||||
|
|
|
@ -369,16 +369,16 @@ static SEL valueInComponentSEL = NULL;
|
|||
};
|
||||
//<OPTGROUP label="PortMaster 3">
|
||||
|
||||
if (escapeHTMLBoolValue)
|
||||
displayStringValue=GSWResponse_stringByEscapingHTMLString(aResponse,displayStringValue);
|
||||
NSDebugMLLog(@"gswdync",@"displayStringValue=%@",displayStringValue);
|
||||
#ifndef ENABLE_OPTGROUP
|
||||
if (optGroupLabel)
|
||||
{
|
||||
displayStringValue=[NSString stringWithFormat:@"%@ --",displayStringValue];
|
||||
};
|
||||
displayStringValue=[displayStringValue stringByAppendingString:@" --"];
|
||||
};
|
||||
#endif
|
||||
GSWResponse_appendContentHTMLString(aResponse,displayStringValue);
|
||||
if (escapeHTMLBoolValue)
|
||||
GSWResponse_appendContentHTMLString(aResponse,displayStringValue);
|
||||
else
|
||||
GSWResponse_appendContentString(aResponse,displayStringValue);
|
||||
};
|
||||
if (valueValue)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue