I just recently set up a blog for a customer and since most customers don't speak XML I switched the plugin to use the "Manage Links" page.
My customer set up links which had query strings including the usual ampersands which made the links in the frontend view disappear.
Solution:
I added htmlentities() in functions add_link (line 460) and update_link (line 474) so these lines now are as follows:
Code: Select all
$values['link'] = htmlentities($link);