Changeset 13363
- Timestamp:
- 11/11/2022 09:26:12 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-functions.php
r13323 r13363 4742 4742 function bp_get_deprecated_functions_versions() { 4743 4743 $ignore_deprecated = null; 4744 if ( defined( 'BP_IGNORE_DEPRECATED' ) ) { 4744 4745 // Do ignore deprecated => ignore all deprecated code. 4746 if ( defined( 'BP_IGNORE_DEPRECATED' ) && BP_IGNORE_DEPRECATED ) { 4745 4747 $ignore_deprecated = (bool) BP_IGNORE_DEPRECATED; 4748 } 4749 4750 // Do not ignore deprecated => load all deprecated code. 4751 if ( defined( 'BP_LOAD_DEPRECATED' ) && BP_LOAD_DEPRECATED ) { 4752 $ignore_deprecated = ! (bool) BP_LOAD_DEPRECATED; 4746 4753 } 4747 4754
Note: See TracChangeset
for help on using the changeset viewer.