On Sat, Nov 13, 2010 at 8:28 AM, Björn N <[email protected]> wrote:
> Hi!
> I want to use a label "Lägg till" on a submit button, using the code:
> <?php echo $form->end('Lägg till'); ?>, but that renders a button with
> no text in it. If I change the 'ä' to an 'a' the label shows up fine,
> but without the dots above the a. I've tried '&auml;" to no avail.
> I'm pretty sure that the problem exists for other european languages
> too, but as I don't read these languages, it's hard to find a fix for
> the problem.


Try:

echo $form->submit('Lägg till', array(escape' => false));
echo $form->end();

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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

Reply via email to