open YOUR_ADMIN
edit links.php
find the following section of code (around line 330) change the maxlength to whatever you need.
<?php
if ($error == true) {
if ($entry_links_title_error == true) {
echo zen_draw_input_field('links_title', $lInfo->links_title, 'maxlength="64"') . ' ' . ENTRY_LINKS_TITLE_ERROR;
} else {
echo $lInfo->links_title . zen_draw_hidden_field('links_title');
}
} else {
echo zen_draw_input_field('links_title', $lInfo->links_title, 'maxlength="64"', true);
}
?></td>



Reply With Quote
