Hey,
many thanks for this great plugin. The code is not complicated so even my as a php novice can find the right point for a little modification.
Presently your plugin sets a link to the permalink using the_permalink();
That's fine but what happens when the page slug will be changed? The link fails!
Regardings this 'problem' and the new clean internal link buidling of WP 3.0, I changed your code a little bit:
I have commented out line 35 in the link-list.php and add instead the following two lines.
// the_permalink();
bloginfo('wpurl');
echo '/?p='.$post->ID;
If you don't want absolute paths you can just leave bloginfo('wpurl'); and it should still work. (This might be interesting if you move already written content from one website to another!)
I think this is a handy solution and a sensefull extension of this plugin, isn't it?
Love from Bali