mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 15:33:43 +00:00
Commented out </OPTION> closing tag from GSWPopupButton
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@6237 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1a48af9776
commit
93d3325b16
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2000-03-09 Karl Kraft <karl@nfox.com>
|
||||
Change to GSWPopUpButton
|
||||
* the <option> tag should not have a </option> closing tag.
|
||||
|
||||
2000-03-08 Mirko Viviani <mirko.viviani@rccr.cremona.it>
|
||||
|
||||
Added patches by Karl Kraft:
|
||||
|
|
|
@ -180,7 +180,8 @@ static char rcsId[] = "$Id$";
|
|||
if (_escapeHTML)
|
||||
_noSelectionStringValue=[GSWResponse stringByEscapingHTMLString:_noSelectionStringValue];
|
||||
[response_ appendContentHTMLString:_noSelectionStringValue];
|
||||
[response_ _appendContentAsciiString:@"</OPTION>"];
|
||||
// There is no close tag on OPTION
|
||||
//[response_ _appendContentAsciiString:@"</OPTION>"];
|
||||
};
|
||||
for(i=0;i<[_listValue count];i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue