Ok,
After determining a fix for this issue this morning, and making a typo that make it look like the fix didn't work I found my typo and now have this fixed.
In the index.php file find:
PHP Code:
}
$details .= "$detail";
}
}
eval("\$pp_categories = \"".gettemplate('pp_categories')."\";");
and change it to this:
PHP Code:
}
$details .= "$detail";
$indent = '';
}
}
eval("\$pp_categories = \"".gettemplate('pp_categories')."\";");
as it turns out the data in $indent was never cleared so after you indented one subcatagory all following catagories were indented as much as the last one.
I love this Hack. Make my Photopost look just like evey other page on my site. Thank you AJ for making this It's tops.
Kevin