implement TextFormatter class to include media in texts

This commit is contained in:
coderkun 2014-04-18 18:25:52 +02:00
commit f723382b93
9 changed files with 137 additions and 7 deletions

View file

@ -28,7 +28,7 @@
* @param string $string String to be masked
* @return string Masked string
*/
static function t($string)
public static function t($string)
{
return nl2br(htmlspecialchars($string));
}