Changeset 7281
- Timestamp:
- 07/11/2024 11:11:14 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bbpress.php
r7268 r7281 45 45 /** 46 46 * bbPress uses many variables, several of which can be filtered to 47 * customize the way it operates. Most of th ese variables are stored in a48 * private array that gets updated with the help ofPHP magic methods.47 * customize the way it operates. Most of those variables are stored in this 48 * private array via PHP magic methods. 49 49 * 50 50 * This is a precautionary measure, to avoid potential errors produced by 51 * unanticipated direct manipulation of run-time data.51 * unanticipated direct manipulation of critical run-time data. 52 52 * 53 53 * @see bbPress::setup_globals() 54 54 * @var array 55 55 */ 56 private $data ;56 private $data = array(); 57 57 58 58 /** Not Magic *************************************************************/
Note: See TracChangeset
for help on using the changeset viewer.