text.php 253 B

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