Changeset 56356 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 08/03/2023 07:50:20 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r56349 r56356 188 188 189 189 trigger_error( 190 "The property `{$name}` is not de fined. Getting a dynamic (undefined)property is " .191 'deprecated since version 6.4.0! Instead, de fine the property on the class.',190 "The property `{$name}` is not declared. Getting a dynamic property is " . 191 'deprecated since version 6.4.0! Instead, declare the property on the class.', 192 192 E_USER_DEPRECATED 193 193 ); … … 211 211 212 212 trigger_error( 213 "The property `{$name}` is not de fined. Setting a dynamic (undefined)property is " .214 'deprecated since version 6.4.0! Instead, de fine the property on the class.',213 "The property `{$name}` is not declared. Setting a dynamic property is " . 214 'deprecated since version 6.4.0! Instead, declare the property on the class.', 215 215 E_USER_DEPRECATED 216 216 ); … … 232 232 233 233 trigger_error( 234 "The property `{$name}` is not de fined. Checking `isset()` on a dynamic (undefined)property " .235 'is deprecated since version 6.4.0! Instead, de fine the property on the class.',234 "The property `{$name}` is not declared. Checking `isset()` on a dynamic property " . 235 'is deprecated since version 6.4.0! Instead, declare the property on the class.', 236 236 E_USER_DEPRECATED 237 237 ); … … 254 254 255 255 trigger_error( 256 "A property `{$name}` is not de fined. Unsetting a dynamic (undefined)property is " .257 'deprecated since version 6.4.0! Instead, de fine the property on the class.',256 "A property `{$name}` is not declared. Unsetting a dynamic property is " . 257 'deprecated since version 6.4.0! Instead, declare the property on the class.', 258 258 E_USER_DEPRECATED 259 259 );
Note: See TracChangeset
for help on using the changeset viewer.