Hello:
In Spain, as in many other places, we use lots of special characters as á, é, í, ó, ú...
When I use thees characters to fill up an user profile, I obtain numerical codes in a page with a ViewProfile module.
So if my city address is San Sebastián, I obtain as result San Sebastián
Any idea? must I change something in the template?
This is the template I'm using:
<center><table style="width: 90%;">
<tbody>
<tr>
<td style="text-align: left; vertical-align: top;" colspan="2"><p>&nbsp;</p><p>&nbsp;</p>
<h3><strong><span style="color: #a5a5a5; font-size: 16px;">Acerca del Usuario</span></strong></h3>
<p data-bind="html: Biography"></p>
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td style="text-align: left; width: 50%; vertical-align: top;">
<h3><strong><span style="color: #a5a5a5; font-size: 16px;">Direcci&oacute;n</span></strong></h3>
<span data-bind="text: Location()"></span><span data-bind="visible: Location().length > 0"><br/></span>
<span data-bind="text: Country()"></span><span data-bind="visible: Country().length > 0"><br/></span>
<span data-bind="text: PostalCode()"></span>
</p>
<p>&nbsp;</p>
</td>
<td style="text-align: left; width: 50%; vertical-align: top;">
<h3><strong><span style="color: #a5a5a5; font-size: 16px;">Opciones de Contacto</span></strong></h3>
<span data-bind="visible: Telephone().length > 0"><strong><span data-bind="text: TelephoneText">:</strong> <span data-bind="text: Telephone()"></li>
<li data-bind="visible: Email().length > 0"><strong><span data-bind="text: EmailText">:</strong> <span data-bind="text: Email()"></li>
<li data-bind="visible: Website().length > 0"><strong><span data-bind="text: WebsiteText">:</strong> <span data-bind="text: Website()"></li>
<li data-bind="visible: IM().length > 0"><strong><span data-bind="text: IMText">:</strong> <span data-bind="text: IM()"></li>
</td>
</tr>
</tbody>
</table></center>
Despite words obtaind from profile show numerical codes, the result of text: TelephoneText that is "Teléfono" appears as it, Teléfono
Thank's a lot