Page 1 of 1

SOLVED - ForumMadeSimple

Posted: Sat Nov 29, 2008 6:59 pm
by richardkean
I've installed and configured ForumMadeSimple as per the instructions found here...

http://wiki.cmsmadesimple.org/index.php ... ions/Forum

It all works but I can't get the little extra feature to work. Displaying the lastest post on any page on the site...

The code from the instructions is:
{cms_module module='FrontEndUsers' form='silent'}
{cms_module module='Forum' action='last_posts' forumpage='forum'}

but I get::
Warning: Parameter forumpage is not known... dropped in /homepages/27/d104848708/htdocs/usa-explained.net/portal/lib/misc.functions.php on line 1301

if I remove "action='last_posts' forumpage='forum'"  then it will just disaplay the forum itslef.  Cool but not what I need.

Any ideas wold be greatly appreciated. thanks!

my site is www.usa-explained.net/portal

-Richard

Re: ForumMadeSimple

Posted: Sat Nov 29, 2008 10:21 pm
by Dee
In modules/Forum/module.Forum.php, line 157 after

Code: Select all

			$this->SetParameterType('post_body',CLEAN_STRING);
add

Code: Select all

			$this->SetParameterType('forumpage',CLEAN_STRING);
The latest version 0.9.2 has this line, so you may want to upgrade ForumMadeSimple.

Regards,
D

Re: ForumMadeSimple

Posted: Sun Nov 30, 2008 12:33 am
by richardkean
Thanks!  that did it.

-Richard