See 'Red Butte Children's Garden?' It's inserted that backslash.
I've changed $output.= $row["name"].' to use SmartStripslashes as instructed by another forum writer but they are STILL showing up only on the 'picture' level. Is there somewhere else I should be changing it as well?
There should be three levels: collection, album, picture. You should only have captions in the last two at most.
Also, make sure it's not being escaped twice when it goes in. You could always stripslashes() twice. But that's not really the point, it's not an actual solution.
Finally, why can't I find SmartStripSlashes() in the PHP manual? Am I crazy?
That is a custom function Derek... it is basically just stripslashes that checks to see if gpc magic quotes is on or off before applying the function. I think it is in plog-functions...
It is all in the generate_breadcrumbs() function, look hard I'm sure you just overlooked it =).
There are several places you need to apply stripslashes to in that function, look specifically in the picture branch of the logic after case 'picture':
Everywhere that says $row['name'] should be stripslashes($row['name'])