@Dream Thanks this did get it to parse my urls - worked like a charm.. I put both of your messages together below.. Make it easier to follow ...
Edit: class_ffrss.php
Find and replace
PHP Code:
PHP Code:
$newpost['message'] = $message;
To
PHP Code:
PHP Code:
$newpost['message'] = convert_url_to_bbcode($message);
added
PHP Code:
require_once(DIR . '/includes/functions_newpost.php');
after
PHP Code:
require_once(DIR . '/includes/functions_databuild.php');
One other thing someone was asking how not to exclude these posts in new posts or todays posts - do this.. if you have rss feeds in 16 15 and 23
just add &exclude=6,15,23 to the end of the do=getnew url and it'll exlude the forums with the forumids 6, 15 and 23.
Thanks Zero another great hack...