MyBB Hacks

Full Version: [SOLVED] How to remove title from this line code?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello guys,

I have installed this plugin to auto post content using RSS Feeds:
http://mods.mybb.com/view/rss-feed-poster

But I need a little change and I dont know how to do It...
I need to remove thread title from the message body:
[Image: 2OBgN.png]

I detected the code here:

Code:
$new_thread = array(
"fid" => $feed['fid'],
"subject" => $feed['topicprefix'] . $msg_title,
"icon" => '',
"uid" => $feed['uid'],
"username" => $feed['postername'],
"message" => '[b]' . $msg_title . "[/b]\n\n" . $msg_body,
"ipaddress" => '127.0.0.1',
"posthash" => ''
);


this line right?

Code:
"message" => '[b]' . $msg_title . "[/b]\n\n" . $msg_body,


But I dont know how to remove...
Can someone help me?

Thank you!

Delete this:

Code:
'[b]' . $msg_title . "[/b]\n\n" . 

Thank you ZiNgA BuRgA Smile
Fixed!
Reference URL's