Well, thanks to The Geek, coder extraordinare of such addons as Geek Article System and Geek Mark, I got the variables problem fixed with PHP 5.0.5 and here's the thing - it might take care of the duplicate post problem some of you are experiencing as well.
In a nutshell, PHP 5.0.4 and above "fixed" a bug with passing variables as part of a string. You aren't supposed to be able to do that and in fact in a lot of cases it won't work if you do, but PHP previously wouldn't report an error message when it happened. Now it does and in fact stops the script from running further. This has caused some consternation as a lot of scripts which previously "worked" ended up breaking because of this fix, but in fact it's really a good thing long term since it exposes errors in code people never realized were there.
Case in point, this script: With PHP 5.0.5 the class_ffrss.php file errors out with the message I posted earlier. The string in question is on line 371:
Code:
$ThreadDM->setr('dateline', $this->get_dateline());
Which as you can plainly see is passing a variable as part of the string itself, which is a no no. You will also note that said string has to do with getting the date of the RSS feed it is about to post, which I suspect is the root cause of the double-posting a lot of you have been seeing - the string above will produce no error with PHP versions lower than 5.0.4 but neither will it work correctly.
To fix this error, replace line 371 shown above with:
Code:
$dateline = $this->get_dateline();
$ThreadDM->setr('dateline', $dateline);
The above will work whether you have PHP 5.0.5 or not, remember the "bug" has always been there, new versions of PHP just bother to point it out.
This works just fine for me and as an added bonus I have yet to see a duplicate post, although I can't guarentee this is the fix for that issue.
And be sure to thank The Geek and vote for his hacks because that guy is a genius.