Skip to:
Content

bbPress.org


Ignore:
Timestamp:
06/23/2024 05:21:38 AM (2 years ago)
Author:
johnjamesjacoby
Message:

Akismet: add class definition for $last_post.

This change improves compatibility with newer PHP versions (8.0 and above) that prefer for all class variables to be predefined.

In branches/2.6, for 2.6.10.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.6/src/includes/extend/akismet.php

    r7227 r7252  
    2121 */
    2222class BBP_Akismet {
     23
     24    /**
     25     * The last post checked by Akismet.
     26     *
     27     * @since 2.0.0 bbPress (r3277)
     28     *
     29     * @var array $last_post Default empty array.
     30     */
     31    protected $last_post = array();
    2332
    2433    /**
Note: See TracChangeset for help on using the changeset viewer.