CakePHP convert quotes.

2009-11-18 Thread Caio Tarifa
Hi.

CakePHP is converting my quotes for ASCII decimal. Look the example:

Input:
?php echo $form-text('Controller.input', array(class =
{mask:'9', type:'repeat'})); ?

Output:
input name=data[Controller][input] type=text
class={mask:#039;9#039;, type:#039;repeat#039;} value=
id=ControllerInput /

Please, help me to solve my problem?

Regards,
Caio Tarifa

--

You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-...@googlegroups.com.
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=.




Re: CakePHP convert quotes.

2009-11-18 Thread jodator
I'm trying to understand what you want to get with class=
{mask:'9', type:'repeat'} ?

class name in HTML should be alfanumerical (strting from a letter), so
I don't see a point in this statement (maybe I'm wront ;-) ).

Anyhow cakePHP escapes attributes with h() function, try to add
escape = false to options:

?php echo $form-text('Controller.input', array(class =
{mask:'9', type:'repeat'}, escape = false )); ?

But again, I don't think that is good way of using the class
parameter, wchich should be used to define classes of form element in
(x)HTML.

Best Regards,
Maciej Gołaszewski

On Nov 18, 1:14 pm, Caio Tarifa caiotar...@gmail.com wrote:
 Hi.

 CakePHP is converting my quotes for ASCII decimal. Look the example:

 Input:
 ?php echo $form-text('Controller.input', array(class =
 {mask:'9', type:'repeat'})); ?

 Output:
 input name=data[Controller][input] type=text
 class={mask:#039;9#039;, type:#039;repeat#039;} value=
 id=ControllerInput /

 Please, help me to solve my problem?

 Regards,
 Caio Tarifa

--

You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-...@googlegroups.com.
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=.