[Prototype-core] Re: Bug in the Prototype's String.unescapeHTML()?

2007-07-11 Thread Vladimir V. Perepelitsa
Done: http://dev.rubyonrails.org/ticket/8951 On 7/11/07, jdalton [EMAIL PROTECTED] wrote: On Snap! Tricky, they define it again for WebKit and IE. Follow the info here : http://www.prototypejs.org/contribute and create a ticket 8) You can post back here with a link to the ticket if you

[Prototype-core] Re: Bug in the Prototype's String.unescapeHTML()?

2007-07-11 Thread jdalton
I modified a similar ticket dealing with code in the same area: http://dev.rubyonrails.org/ticket/8851 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype: Core group. To post to this group, send email to

[Prototype-core] Re: Bug in the Prototype's String.unescapeHTML()?

2007-07-10 Thread Vladimir V. Perepelitsa
prototype-1.5.1.1: line 406: unescapeHTML: function() { return this.replace(/amp;/g,'').replace(/lt;/g,'').replace(/gt;/g,''); } but should be unescapeHTML: function() { return this.replace(/lt;/g,'').replace(/gt;/g,'').replace(/amp;/g,''); } Compare the results of var

[Prototype-core] Re: Bug in the Prototype's String.unescapeHTML()?

2007-07-10 Thread jdalton
On Snap! Tricky, they define it again for WebKit and IE. Follow the info here : http://www.prototypejs.org/contribute and create a ticket 8) You can post back here with a link to the ticket if you wish. --~--~-~--~~~---~--~~ You received this message because