blob: 2c9242c1d428c1bf6550813d451909dea1b49baf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* Elgg text output
* Displays some text that was input using a standard text field
*
* @package Elgg
* @subpackage Core
*
* @uses $vars['text'] The text to display
*
*/
echo htmlspecialchars($vars['value'], ENT_QUOTES, 'UTF-8', false);
|