Hey,
I found a small bug on nCode Image Resizer: UserCP inclusion plugin.
Where is:
Code:
$customfields['threadview'] .= '<fieldset class="fieldset">
<legend><label for="theimageresizer">' . $vbphrase['ncode_imageresizer_profileoptions_title'] . '</title></legend>' . $vbphrase['ncode_imageresizer_profileoptions_title_desc'] . '';
Should be:
Code:
$customfields['threadview'] .= '<fieldset class="fieldset">
<legend><label for="theimageresizer">' . $vbphrase['ncode_imageresizer_profileoptions_title'] . '</label></legend>';
Two errors: you used </title> instead of </lable> and you can post a text ($vbphrase['ncode_imageresizer_profileoptions_title_desc']) outside the table that follows or you will have a break in layout. In fact, $vbphrase['ncode_imageresizer_profileoptions_title_desc'] and $vbphrase['ncode_imageresizer_mode_description'] are identical, showing that the above piece was added by mistake.
Cheers,
Gabriel.