Hi,
I had the same problem with WordPress CVS and maybe found a solution. Please beware, though, I’m a WordPress beginner.
Open wp-admin/link-manager.php and find the following (line 43 in my file):
$wpvarstoreset = array(‘action’,’cat_id’, ‘linkurl’, ‘name’, ‘image’,
‘description’, ‘visible’, ‘target’, ‘category’, ‘link_id’,
‘submit’, ‘order_by’, ‘links_show_cat_id’, ‘rating’, ‘rel’,
‘notes’, ‘linkcheck[]’);
The last entry, ‘linkcheck[]’, should be ‘linkcheck’. Try if removing the brackets helps you also.
Technical reason (as I see it):
In the html form we have the entry: name=”linkcheck[]”. The brackets mean it is an array variable, but the name of the variable that gets POSTed is ‘linkcheck’. With the brackets the assignment would be:
$linkcheck = $_POST[“linkcheck[]”]
instead of the correct
$linkcheck = $_POST[“linkcheck”]
Sanne