WAMetaElement>>encodeBeforeOn: missing brackets

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

WAMetaElement>>encodeBeforeOn: missing brackets

Boris Popov, DeepCove Labs (SNN)

WAMetaElement>>encodeBeforeOn: aDocument

self attributes at: 'content' ifAbsentPut: ''.

super encodeBeforeOn: aDocument

 

Should be,

 

WAMetaElement>>encodeBeforeOn: aDocument

self attributes at: 'content' ifAbsentPut: [''].

super encodeBeforeOn: aDocument

 

-Boris


_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: WAMetaElement>>encodeBeforeOn: missing brackets

Philippe Marschall
2011/2/23 Boris Popov, DeepCove Labs <[hidden email]>:

> WAMetaElement>>encodeBeforeOn: aDocument
>
> self attributes at: 'content' ifAbsentPut: ''.
>
> super encodeBeforeOn: aDocument
>
>
>
> Should be,
>
>
>
> WAMetaElement>>encodeBeforeOn: aDocument
>
> self attributes at: 'content' ifAbsentPut: [''].
>
> super encodeBeforeOn: aDocument

Thanks, fixed.

Cheers
Philippe
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside