Use stripslashes() on catname in forms
I've found a bug that is fairly easily fixed with stripslashes().
If the correct punctuation of a Category title inclues ' then it will show as \' in the second step of the form. This is easily fixed by calling stripslashes() on the catname in the cp_formbuilder_review function. The edited line would look like:
PHP Code:
<div id="review"><?php echo stripslashes($_POST['catname']); ?></div>
Hopefully this minor fix can be implemented in the next release.