Changeset 59805
- Timestamp:
- 02/11/2025 01:38:12 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment.php
r59337 r59805 34 34 * @var string 35 35 */ 36 public $comment_post_ID = 0;36 public $comment_post_ID = '0'; 37 37 38 38 /** … … 100 100 * @var string 101 101 */ 102 public $comment_karma = 0;102 public $comment_karma = '0'; 103 103 104 104 /** … … 135 135 * @var string 136 136 */ 137 public $comment_parent = 0;137 public $comment_parent = '0'; 138 138 139 139 /** … … 145 145 * @var string 146 146 */ 147 public $user_id = 0;147 public $user_id = '0'; 148 148 149 149 /**
Note: See TracChangeset
for help on using the changeset viewer.