Changeset 13818 for trunk/src/class-buddypress.php
- Timestamp:
- 04/28/2024 12:23:47 PM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/class-buddypress.php
r13705 r13818 280 280 */ 281 281 public function __clone() { 282 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'buddypress' ), '1.7' );282 _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'buddypress' ), '1.7' ); 283 283 } 284 284 … … 289 289 */ 290 290 public function __wakeup() { 291 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'buddypress' ), '1.7' );291 _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'buddypress' ), '1.7' ); 292 292 } 293 293 … … 317 317 $valid_key = $key; 318 318 if ( 'root_domain' === $key ) { 319 _doing_it_wrong( 'root_domain', __( 'The root_domain BuddyPress main class property is deprecated since 12.0.0, please use the root_url property instead.', 'buddypress' ), 'BuddyPress 12.0.0' );319 _doing_it_wrong( 'root_domain', esc_html__( 'The root_domain BuddyPress main class property is deprecated since 12.0.0, please use the root_url property instead.', 'buddypress' ), 'BuddyPress 12.0.0' ); 320 320 $valid_key = 'root_url'; 321 321 } … … 335 335 $valid_key = $key; 336 336 if ( 'root_domain' === $key ) { 337 _doing_it_wrong( 'root_domain', __( 'The root_domain BuddyPress main class property is deprecated since 12.0.0, please use the root_url property instead.', 'buddypress' ), 'BuddyPress 12.0.0' );337 _doing_it_wrong( 'root_domain', esc_html__( 'The root_domain BuddyPress main class property is deprecated since 12.0.0, please use the root_url property instead.', 'buddypress' ), 'BuddyPress 12.0.0' ); 338 338 $valid_key = 'root_url'; 339 339 }
Note: See TracChangeset
for help on using the changeset viewer.