Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-sodium": "*",
"johnpbloch/wordpress": "6.8.1"
"johnpbloch/wordpress": "6.8.2"
},
"minimum-stability": "stable",
"config": {
Expand Down
14 changes: 14 additions & 0 deletions wordpress-stubs.php
Original file line number Diff line number Diff line change
Expand Up @@ -91996,6 +91996,17 @@ function upgrade_650()
function upgrade_670()
{
}
/**
* Executes changes made in WordPress 6.8.2.
*
* @ignore
* @since 6.8.2
*
* @global int $wp_current_db_version The old (current) database version.
*/
function upgrade_682()
{
}
/**
* Executes network-level upgrade routines.
*
Expand Down Expand Up @@ -101980,6 +101991,7 @@ function wp_list_comments($args = array(), $comments = \null)
* @since 4.6.0 Introduced the 'action' argument.
* @since 4.9.6 Introduced the 'cookies' default comment field.
* @since 5.5.0 Introduced the 'class_container' argument.
* @since 6.8.2 Introduced the 'novalidate' argument.
*
* @param array $args {
* Optional. Default arguments and form fields to override.
Expand All @@ -102001,6 +102013,7 @@ function wp_list_comments($args = array(), $comments = \null)
* Default 'Your email address will not be published.'.
* @type string $comment_notes_after HTML element for a message displayed after the textarea field.
* @type string $action The comment form element action attribute. Default '/wp-comments-post.php'.
* @type bool $novalidate Whether the novalidate attribute is added to the comment form. Default false.
* @type string $id_form The comment form element id attribute. Default 'commentform'.
* @type string $id_submit The comment submit element id attribute. Default 'submit'.
* @type string $class_container The comment form container class attribute. Default 'comment-respond'.
Expand Down Expand Up @@ -102039,6 +102052,7 @@ function wp_list_comments($args = array(), $comments = \null)
* comment_notes_before?: string,
* comment_notes_after?: string,
* action?: string,
* novalidate?: bool,
* id_form?: string,
* id_submit?: string,
* class_container?: string,
Expand Down