@@ -91996,6 +91996,17 @@ function upgrade_650()
91996
91996
function upgrade_670()
91997
91997
{
91998
91998
}
91999
+ /**
92000
+ * Executes changes made in WordPress 6.8.2.
92001
+ *
92002
+ * @ignore
92003
+ * @since 6.8.2
92004
+ *
92005
+ * @global int $wp_current_db_version The old (current) database version.
92006
+ */
92007
+ function upgrade_682()
92008
+ {
92009
+ }
91999
92010
/**
92000
92011
* Executes network-level upgrade routines.
92001
92012
*
@@ -101980,6 +101991,7 @@ function wp_list_comments($args = array(), $comments = \null)
101980
101991
* @since 4.6.0 Introduced the 'action' argument.
101981
101992
* @since 4.9.6 Introduced the 'cookies' default comment field.
101982
101993
* @since 5.5.0 Introduced the 'class_container' argument.
101994
+ * @since 6.8.2 Introduced the 'novalidate' argument.
101983
101995
*
101984
101996
* @param array $args {
101985
101997
* Optional. Default arguments and form fields to override.
@@ -102001,6 +102013,7 @@ function wp_list_comments($args = array(), $comments = \null)
102001
102013
* Default 'Your email address will not be published.'.
102002
102014
* @type string $comment_notes_after HTML element for a message displayed after the textarea field.
102003
102015
* @type string $action The comment form element action attribute. Default '/wp-comments-post.php'.
102016
+ * @type bool $novalidate Whether the novalidate attribute is added to the comment form. Default false.
102004
102017
* @type string $id_form The comment form element id attribute. Default 'commentform'.
102005
102018
* @type string $id_submit The comment submit element id attribute. Default 'submit'.
102006
102019
* @type string $class_container The comment form container class attribute. Default 'comment-respond'.
@@ -102039,6 +102052,7 @@ function wp_list_comments($args = array(), $comments = \null)
102039
102052
* comment_notes_before?: string,
102040
102053
* comment_notes_after?: string,
102041
102054
* action?: string,
102055
+ * novalidate?: bool,
102042
102056
* id_form?: string,
102043
102057
* id_submit?: string,
102044
102058
* class_container?: string,
0 commit comments