@@ -91996,6 +91996,17 @@ function upgrade_650()
9199691996 function upgrade_670()
9199791997 {
9199891998 }
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+ }
9199992010 /**
9200092011 * Executes network-level upgrade routines.
9200192012 *
@@ -101980,6 +101991,7 @@ function wp_list_comments($args = array(), $comments = \null)
101980101991 * @since 4.6.0 Introduced the 'action' argument.
101981101992 * @since 4.9.6 Introduced the 'cookies' default comment field.
101982101993 * @since 5.5.0 Introduced the 'class_container' argument.
101994+ * @since 6.8.2 Introduced the 'novalidate' argument.
101983101995 *
101984101996 * @param array $args {
101985101997 * Optional. Default arguments and form fields to override.
@@ -102001,6 +102013,7 @@ function wp_list_comments($args = array(), $comments = \null)
102001102013 * Default 'Your email address will not be published.'.
102002102014 * @type string $comment_notes_after HTML element for a message displayed after the textarea field.
102003102015 * @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.
102004102017 * @type string $id_form The comment form element id attribute. Default 'commentform'.
102005102018 * @type string $id_submit The comment submit element id attribute. Default 'submit'.
102006102019 * @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)
102039102052 * comment_notes_before?: string,
102040102053 * comment_notes_after?: string,
102041102054 * action?: string,
102055+ * novalidate?: bool,
102042102056 * id_form?: string,
102043102057 * id_submit?: string,
102044102058 * class_container?: string,
0 commit comments