Changeset 59337
- Timestamp:
- 11/03/2024 11:01:38 PM (6 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment.php
r56433 r59337 352 352 * @since 4.4.0 353 353 * 354 * @param string $name Property name.355 * @return bool 354 * @param string $name Property to check if set. 355 * @return bool Whether the property is set. 356 356 */ 357 357 public function __isset( $name ) { … … 360 360 return property_exists( $post, $name ); 361 361 } 362 363 return false; 362 364 } 363 365 -
trunk/src/wp-includes/class-wp-query.php
r58180 r59337 4012 4012 return isset( $this->$name ); 4013 4013 } 4014 4015 return false; 4014 4016 } 4015 4017
Note: See TracChangeset
for help on using the changeset viewer.