Changes between Version 9 and Version 10 of WebForum
- Timestamp:
- Jun 2, 2011, 10:32:42 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebForum
v9 v10 9 9 {{{ 10 10 php 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 becomes18 {{{19 // require_once('../inc/akismet.inc');20 }}}21 and22 {{{23 akismet_check($logged_in_user, $content);24 }}}25 becomes26 {{{27 // akismet_check($logged_in_user, $content);28 11 }}} 29 12