Add proper titles to the contact view

refs #8458
This commit is contained in:
Johannes Meyer 2015-02-23 17:30:37 +01:00
parent 32e048693a
commit bb5799434c
1 changed files with 5 additions and 1 deletions

View File

@ -19,8 +19,12 @@
</tr>
<?php if ($contact->contact_email): ?>
<tr>
<td><?= sprintf('<a href="mailto:%1$s">%1$s</a>', $this->escape($contact->contact_email)) ?></td>
<th><?= $this->translate('Email') ?></th>
<td>
<a href="mailto:<?= $contact->contact_email; ?>" title="<?= sprintf($this->translate('Send a mail to %s'), $contact->contact_alias); ?>" aria-label="<?= sprintf($this->translate('Send a mail to %s'), $contact->contact_alias); ?>">
<?= $this->escape($contact->contact_email); ?>
</a>
</td>
</tr>
<?php endif ?>
<?php if ($contact->contact_pager): ?>