I have identified a minor bug in this hack.
Some of the sources that Moreover.com uses require free registration at their site before you can view the entire article linked to in the headlines. Headlines that come from sources that require registration are marked in the XML source with a special flag, and I have written a feature into the XML decoder that if that flag is present, a notice will appear by the headline that says, "(NOTE: Registration or subscription may be required to access this article.)". There was a minor code error in this part of the hack whereby if there was more than one headline showing up with this notice, there would be one notice for the first, two for the second, three for the third, etc.
I will be updating the attachment in the original post above shortly. That will become v1.2a. If you have already installed v1.2, all you need to do to fix this is:
In forumdisplay.php, find:
PHP Code:
eval("\$forumnewsaccessregbit .= \"".gettemplate("forumnewsbit_accessreg")."\";");
Change it to this:
PHP Code:
eval("\$forumnewsaccessregbit = \"".gettemplate("forumnewsbit_accessreg")."\";");
That's it!