Quote:
Originally Posted by cyclical
You get the apostrophe thing fixed?
|
Yes, and the next version will have the fix in place. If you want it in place right now, open up the plugin "Add Lower Breadcrumbs to SHOWTHREAD template", and find this line:
PHP Code:
$breadcrumbs = $newTemplate->render();
And add this below (don't copy/paste, see my note below this!!!):
PHP Code:
$breadcrumbs = str_replace("'", "**", $breadcrumbs);
Replace the ** with & #039 only with no space between the & and the #. I know this is funky, but it gets parsed and turned into an apostrophe if I don't put a space in there.