Contao\Controller::restoreBasicEntities PHP Method

restoreBasicEntities() public static method

Restore basic entities
Deprecation: Deprecated since Contao 4.0, to be removed in Contao 5.0. Use StringUtil::restoreBasicEntities() instead.
public static restoreBasicEntities ( string $strBuffer ) : string
$strBuffer string The string with the tags to be replaced
return string The string with the original entities
    public static function restoreBasicEntities($strBuffer)
    {
        @trigger_error('Using Controller::restoreBasicEntities() has been deprecated and will no longer work in Contao 5.0. Use StringUtil::restoreBasicEntities() instead.', E_USER_DEPRECATED);
        return \StringUtil::restoreBasicEntities($strBuffer);
    }