summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-07-31 14:54:38 +0200
committerGuillaume Mazoyer <respawneral@gmail.com>2014-07-31 14:54:38 +0200
commit513b01f4973cfe7f7617436276eedf4eaeb07678 (patch)
treeb5c3312780f5079a3907cd30f1aa57bd6197dbee
parent64510dd731e0d0692a8771be35514394bc4ead09 (diff)
Fix contact mail link.
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index ba6885f..78c837c 100644
--- a/index.php
+++ b/index.php
@@ -167,7 +167,7 @@ final class LookingGlass {
if (isset($this->contact) && !empty($this->contact)) {
print 'Contact:&nbsp;';
- print '<a href="mail:'.$this->contact['mail'].'">'.
+ print '<a href="mailto:'.$this->contact['mail'].'">'.
htmlentities($this->contact['name']).'</a>';
}