Changeset 3376 for branches/plugin/bbp-includes/bbp-core-akismet.php
- Timestamp:
- 07/25/2011 06:40:41 AM (15 years ago)
- File:
-
- 1 edited
-
branches/plugin/bbp-includes/bbp-core-akismet.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-core-akismet.php
r3348 r3376 23 23 24 24 /** 25 * The main bbPress Akismet loader (PHP4 compat)25 * The main bbPress Akismet loader 26 26 * 27 27 * @since bbPress (r3277) 28 */29 function BBP_Akismet() {30 $this->__construct();31 }32 33 /**34 * The main bbPress Akismet loader35 *36 * @since bbPress (r3277)37 28 * 38 29 * @uses add_filter() 39 30 */ 40 31 function __construct() { 41 $this-> _setup_actions();32 $this->setup_actions(); 42 33 } 43 34 … … 51 42 * @uses add_action() To add various actions 52 43 */ 53 function _setup_actions() {44 function setup_actions() { 54 45 55 46 // Bail if no akismet
Note: See TracChangeset
for help on using the changeset viewer.