Changes between Version 2 and Version 3 of WebForum


Ignore:
Timestamp:
May 2, 2007, 8:19:01 AM (17 years ago)
Author:
JamesDorsey
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebForum

    v2 v3  
    99{{{
    1010php create_forums.php
     11}}}
     12
     13If you decide NOT to use the Akismet anti-spam system, you will then need to edit html/user/forum_post.php and html/user/forum_reply.php to comment out the references to Akismet. i.e.
     14{{{
     15require_once('../inc/akismet.inc');
     16}}}
     17becomes
     18{{{
     19// require_once('../inc/akismet.inc');
     20}}}
     21and
     22{{{
     23    akismet_check($logged_in_user, $content);
     24}}}
     25becomes
     26{{{
     27//    akismet_check($logged_in_user, $content);
    1128}}}
    1229