Clyde, I'm playing around with the latest version of Links Manager on a test site (1.38a) with all the security mods. Everything works fine except when adding a new link in the admin panel, you cannot set the status to "Approved" from the dropdown.
You can, however, change the status for an existing link, using the dropdown--it just doesn't work for a new link.
Might the solution have something to do with the code in the file admin/links.php, somewhere around line 493?
Code:
if ($action == 'new' || $action == 'insert') {
echo zen_draw_pull_down_menu('links_status', $link_statuses, zen_not_null($lInfo->links_status) ? $lInfo->links_status : $links_status_default, '', false);
}
if ($action == 'edit' || $action == 'update') {
echo zen_draw_pull_down_menu('links_status', $link_statuses, $lInfo->links_status, '', false);
}
Any ideas would be appreciated. Thanks for a great add-on.
Bookmarks