Changeset 61034
- Timestamp:
- 10/21/2025 01:58:49 PM (4 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
src/wp-includes/comment-template.php (modified) (2 diffs)
-
tests/phpunit/tests/comment/commentForm.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r60909 r61034 2593 2593 } 2594 2594 } 2595 2596 2595 2597 2596 2598 /** … … 2807 2809 echo $args['comment_notes_after']; 2808 2810 2809 } elseif ( ! is_user_logged_in() ) {2811 } elseif ( ! is_user_logged_in() ) { 2810 2812 2811 2813 if ( $first_field === $name ) { -
trunk/tests/phpunit/tests/comment/commentForm.php
r60304 r61034 228 228 $this->assertTrue( $p->get_attribute( 'novalidate' ), 'Expected FORM to have novalidate attribute.' ); 229 229 } 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 230 298 }
Note: See TracChangeset
for help on using the changeset viewer.