Prova sostituendo...
Codice PHP:
echo ($this->entry); 
con...
Codice PHP:
echo htmlentities($this->entry); 
Ovviamente puoi eliminare le funzioni removeAttributes e removeEvilTags. A differenza di queste, htmlentities non eliminerà i tag HTML, ma semplicemente li convertirà in modo che possano essere visualizzati come normale testo.

Ciao.