Quote Originally Posted by amirshawn80 View Post
That's how I tried to change it earlier.

I figured out that after making those changes to the datable, I can only input a long title through the web submission page. If I try to enter the link through the admin I can only enter 64 characters.


I don't need a fix for that, it just may be something you can fix in future versions

Thank you for your support
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"') . '&nbsp;' . 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>