While I agree entirely with what scriptjunkie says about extraneous code there are perhaps a few exceptions.
I haven't looked at this really closely but the line of code is 'sanitising' the alt tag before it is output. What that means effectively is that it is removing the double quotes from the alt tag if they are there. Why? Well if you think of an image tag:
Code:
<img src="whatever" alt="alt-text"/>
you can see that if the alt-text contains a double quote like this ( alt"-"text ) then you are going to end up with poorly formed html. Something like:
Code:
<img src="whatever" alt="alt"-"text"/>
which means that the double quotes in the image tag are messed up.
That is just an example, htmlentities turns a list of characters into their html entities. It is often used for sanitising user input before it is sent to a web page both for practical and security reasons. Have a read of
http://php.net/manual/en/function.htmlentities.php to find out more about what it does.
Personally, I think it would be fine to make sure that all your image names do not contain any strange characters and then just comment out this line. But I am probably going to get seriously criticised for that comment

Or you could write a bit of a replacement for htmlentities. Something like:
Code:
$alt = addslashes(str_replace('"','',$alt))
Which just removes any double quotes but doesn't do anything else so is not nearly as complete a solution. So, you could write a much more complete bit of code that, for instance removed any characters that were not a-z or 1-9. Something like:
Code:
$alt= preg_replace("/[^a-zA-Z0-9\s]/", "", $alt);
None of this is tested so.....
Bookmarks