MyBB Hacks

Full Version: OUGC Announcement Bars invalid content
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
anybody knows how to fix the invalid content error in OUGC Announcement Bars plugin?
http://community.mybb.com/thread-116984-...http://community.mybb.com/thread-116984-post-1149617.html#
Change in the plugin file in line 378

PHP Code:
if(!$content || my_strlen($content) > 250)


to

PHP Code:
if(!$content || my_strlen($content) > 500)

thanks it fixed the invalid content error but now it only lets me use certain amount of characters. that is at the time of submit/save the box only store some content and removes the rest of the content
it only lets me write content equal to 255 characters including spaces
Reference URL's