Changes between Version 9 and Version 10 of WebForum


Ignore:
Timestamp:
Jun 2, 2011, 10:32:42 PM (13 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebForum

    v9 v10  
    99{{{
    1010php create_forums.php
    11 }}}
    12 
    13 If you decide NOT to use the [ProtectionFromSpam 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 {{{
    15 require_once('../inc/akismet.inc');
    16 }}}
    17 becomes
    18 {{{
    19 // require_once('../inc/akismet.inc');
    20 }}}
    21 and
    22 {{{
    23     akismet_check($logged_in_user, $content);
    24 }}}
    25 becomes
    26 {{{
    27 //    akismet_check($logged_in_user, $content);
    2811}}}
    2912