Installed v1.2.21 for the first time today - been messing with it.
I have found certain URLs that contain the & character fail to open when pressing 'v' to open the URL in a new window/tab.
The contents of the ACTUAL RSS feed would be something as follows:
<link>http://blah.com/index.php?test=test&test=test</link>
The backend-RPC file however, returns:
<link>http://blah.com/index.php?test=test&test=test</link>
Accessing the RPC backend file directly with Firefox produces a parse error due to & not converted to &
I fixed this by editing backend-rpc.php in the IF statement that handles "getArticleLink":
$link = ereg_replace("&", "&", $link);
$link = ereg_replace("&amp;", "&", $link); // Just in case...
Is this a bug?