Changeset 53723 for trunk/src/wp-includes/class-wp-xmlrpc-server.php
- Timestamp:
- 07/19/2022 04:17:56 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r53132 r53723 7014 7014 $pagelinkedfrom = $this->escape( $pagelinkedfrom ); 7015 7015 7016 $comment_post_ ID= (int) $post_ID;7016 $comment_post_id = (int) $post_ID; 7017 7017 $comment_author = $title; 7018 7018 $comment_author_email = ''; … … 7023 7023 $comment_type = 'pingback'; 7024 7024 7025 $commentdata = compact( 7026 'comment_post_ID', 7025 $commentdata = array( 7026 'comment_post_ID' => $comment_post_id, 7027 ); 7028 7029 $commentdata += compact( 7027 7030 'comment_author', 7028 7031 'comment_author_url',
Note: See TracChangeset
for help on using the changeset viewer.