Changeset 59147
- Timestamp:
- 02/11/2025 01:40:30 PM (10 months ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
-
class-wp-comment.php (modified) (4 diffs)
-
version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-comment.php
r58723 r59147 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 /** -
trunk/wp-includes/version.php
r59146 r59147 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = '6.8-alpha-5980 4';19 $wp_version = '6.8-alpha-59805'; 20 20 21 21 /**
Note: See TracChangeset
for help on using the changeset viewer.