![]() |
|
RSS Feed Poster 1.5 - Printable Version +- MyBBHacks.com Plugins for MyBB (https://www.mybbhacks.com) +-- Forum: Free Mods (https://www.mybbhacks.com/forumdisplay.php?fid=5) +--- Forum: MyBB 1.6 and older Mods (https://www.mybbhacks.com/forumdisplay.php?fid=6) +--- Thread: RSS Feed Poster 1.5 (/showthread.php?tid=12) |
RE: RSS Feed Poster 1.0.3 - MyBBHacks - 09-15-2010 Looks like something in the feed itself I don't have any code adding new lines to the subject. RE: RSS Feed Poster 1.0.3 - MyBB-Fanatiker - 09-15-2010 RE: RSS Feed Poster 1.0.3 - TundraSoul - 09-15-2010 When enabling the Google SEO plugin I discovered that there's an extra line feed %0A, which is added to the end of the URL of threads that the RSS imports. So for instance I was shown http://www.mysite.com/thread-my-cool-thead%0A as the URL. I'm pretty sure the RSS poster is doing this but if may not effect every type of webserver. To fix it I simply loaded and edited the thread using the thread tools then saved it. Mybb apparently cleaned up the title and as a a result the URL was clean of the extra line feed. Please investigate and advise. RE: RSS Feed Poster 1.0.3 - MyBBHacks - 09-16-2010 After $msg_title = substr($msg_title,0,115); Add this and let me know if it helps $msg_title = trim($msg_title); RE: RSS Feed Poster 1.0.3 - TundraSoul - 09-16-2010 Thanks, that worked perfectly. (09-16-2010, 12:46 AM)MyBBHacks Wrote: After RE: RSS Feed Poster 1.0.3 - MyBB-Fanatiker - 09-16-2010 I can also confirm that the modification has worked in post number #64.Thank you very much
RE: RSS Feed Poster 1.0.4 - MyBBHacks - 09-16-2010 1.0.4 released !Fixed a bug in the subject line that might cause a newline character to be added Might have also fixed handling of html as well not sure made a change. RE: RSS Feed Poster 1.0.4 - TundraSoul - 09-16-2010 Found a bug: Fatal error: Call to undefined function trime() in /home/avengers/public_html/inc/tasks/rssfeedposter.php on line 297 RE: RSS Feed Poster 1.0.4.1 - MyBBHacks - 09-17-2010 1.0.4.1 fixed a typo that prevented feeds from working RE: RSS Feed Poster 1.0.4.1 - TundraSoul - 09-17-2010 Where's the archive at now? I looked over at mybb.com but it wasn't there. |