reference to external entity in attribute value

Cause:

This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&'.

Example:

textexample textexample

Bad:
textexample
textexample
Good:
textexample textexample

Solution:

textexample textexample

References: