diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-07-31 14:54:38 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-07-31 14:54:38 +0200 |
commit | 513b01f4973cfe7f7617436276eedf4eaeb07678 (patch) | |
tree | b5c3312780f5079a3907cd30f1aa57bd6197dbee | |
parent | 64510dd731e0d0692a8771be35514394bc4ead09 (diff) |
Fix contact mail link.
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -167,7 +167,7 @@ final class LookingGlass { if (isset($this->contact) && !empty($this->contact)) { print 'Contact: '; - print '<a href="mail:'.$this->contact['mail'].'">'. + print '<a href="mailto:'.$this->contact['mail'].'">'. htmlentities($this->contact['name']).'</a>'; } |