Re: html special char conversion

Ok, I’ve solved that after doing something that I can’t understand:
I’ve removed ‘h’ symbol from the beginning of this string: “<%=h
cpu.send(column.name) %>”
It is still interesting what I’ve done :slight_smile:

Mikhail S. wrote:

Ok, I’ve solved that after doing something that I can’t understand:
I’ve removed ‘h’ symbol from the beginning of this string: “<%=h
cpu.send(column.name) %>”
It is still interesting what I’ve done :slight_smile:
The h is an alias for html_escape, if that makes things any clearer…

On Wed, 25 Jan 2006 18:30:28 +0000
Alex Y. [email protected] wrote:

Mikhail S. wrote:

Ok, I’ve solved that after doing something that I can’t understand:
I’ve removed ‘h’ symbol from the beginning of this string: “<%=h
cpu.send(column.name) %>”
It is still interesting what I’ve done :slight_smile:
The h is an alias for html_escape, if that makes things any clearer…

Yes, thanks. Where can I read about other aliases?