PDA


View Full Version : Customized settings message overlaps "Additional Pages" setting for Site Nav Module


1QuicksSI
02-15-2008, 11:43 AM
Under Additional Pages the note "This setting has been customized in the following page(s):" overlaps 4th+ fields the fields so I can not enter anything past the 3rd field.

Thanx for a great product!

Brian
02-15-2008, 02:22 PM
Thank you for pointing this out. I've just applied the fix to the forum/includes/vba_cmps_adminfunctions.php file in the download package here, so if you will download the files again and replace that file on your server with the updated version, that should take care of the issue.
Or, if you would rather apply the fix manually, just look in the file for this code:
print_description_row('
<table align="right" cellpadding="2" cellspacing="0" class="tborder">
<tr>
<td class="thead">' . $vbphrase['order'] . '</td>
<td class="thead">' . $vbphrase['level'] . '</td>
<td class="thead">' . $vbphrase['link'] . '</td>
<td class="thead">' . $vbphrase['text'] . '</td>
</tr>' .
$inputs .
'<tr>
<td colspan="4"><input type="hidden" value="' . $pagecount . '" id="theValue_' . $grouptitle . '" />
<div id="moreinputs_' . $grouptitle . '"> </div>
<div style="padding: 4px">[<a href="javascript:;" onclick="add_input_field(\'' . $name . '\', \'' . $grouptitle . '\')">' . $vbphrase['add_more'] . '</a>]</div>
</td>
</tr>
</table>' . $description);

And replace with this:
print_label_row($description, '
<table align="right" cellpadding="2" cellspacing="0" class="tborder">
<tr>
<td class="thead">' . $vbphrase['order'] . '</td>
<td class="thead">' . $vbphrase['level'] . '</td>
<td class="thead">' . $vbphrase['link'] . '</td>
<td class="thead">' . $vbphrase['text'] . '</td>
</tr>' .
$inputs .
'<tr>
<td colspan="4"><input type="hidden" value="' . $pagecount . '" id="theValue_' . $grouptitle . '" />
<div id="moreinputs_' . $grouptitle . '"> </div>
<div style="padding: 4px">[<a href="javascript:;" onclick="add_input_field(\'' . $name . '\', \'' . $grouptitle . '\')">' . $vbphrase['add_more'] . '</a>]</div>
</td>
</tr>
</table>');