Changes between Version 2 and Version 3 of WebForum
- Timestamp:
- May 2, 2007, 8:19:01 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebForum
v2 v3 9 9 {{{ 10 10 php create_forums.php 11 }}} 12 13 If 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 {{{ 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); 11 28 }}} 12 29