on line 166
Replace the existing Function easylinks_update by :

function easylinks_update($linkdata) {
      db_query("UPDATE {easylinks} SET state = %d, url = '%s', sitename = '%s', sitedesc = '%s' WHERE lid = %d", $linkdata['links_state'], $linkdata['links_url'], $linkdata['links_sitename'], $linkdata['links_sitedesc'], $linkdata['links_lid']);
}

The problem was in the order of the parameters ...
The consequence was that all of the link updates were failing (status as well as content)

Comments

Gurpartap Singh’s picture

Status: Fixed » Closed (duplicate)