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/includes/media.php

    r31187 r31200  
    22942294?>
    22952295
    2296 <form id="filter" action="" method="get">
     2296<form id="filter" method="get">
    22972297<input type="hidden" name="type" value="<?php echo esc_attr( $type ); ?>" />
    22982298<input type="hidden" name="tab" value="<?php echo esc_attr( $tab ); ?>" />
Note: See TracChangeset for help on using the changeset viewer.