blob: e2142b09b161cd9d8cfe1c67fbf8e36321fa9fee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* Elgg email output
* Displays an email address that was entered using an email input field
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*
* @uses $vars['value'] The email address to display
*
*/
if (!empty($vars['value'])) {
echo "<a href=\"mailto:" . $vars['value'] . "\">". htmlentities($vars['value'], ENT_QUOTES, 'UTF-8') ."</a>";
}
|