Make WordPress Core


Ignore:
Timestamp:
01/16/2015 04:15:52 AM (10 years ago)
Author:
wonderboymusic
Message:

In HTML5, the action attribute is no longer required. Remove this attribute when empty.

The admin HTML is served with the HTML5 doctype.

"The action and formaction content attributes, if specified, must have a value that is a valid non-empty URL potentially surrounded by spaces."
http://www.w3.org/html/wg/drafts/html/master/forms.html#attr-fs-action

Props voldemortensen.
Fixes #30126.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/network/sites.php

    r30647 r31200  
    262262<?php echo $msg; ?>
    263263
    264 <form action="" method="get" id="ms-search">
     264<form method="get" id="ms-search">
    265265<?php $wp_list_table->search_box( __( 'Search Sites' ), 'site' ); ?>
    266266<input type="hidden" name="action" value="blogs" />
Note: See TracChangeset for help on using the changeset viewer.