Make WordPress Core

Ticket #9681: 9681.2.diff

File 9681.2.diff, 1015 bytes (added by adamsilverstein, 9 years ago)
  • src/wp-includes/post-template.php

     
    18511851                if ( ( 'revision' === $type && $is_autosave ) || ( 'autosave' === $type && ! $is_autosave ) )
    18521852                        continue;
    18531853
    1854                 $rows .= "\t<li>" . wp_post_revision_title_expanded( $revision ) . "</li>\n";
     1854                $rows .= "\t<li>" . wp_post_revision_title_expanded( $revision ) .
     1855
     1856                /**
     1857                * Filter the actions available in the revisions list meta box.
     1858                *
     1859                * @since 4.4.0
     1860                *
     1861                * @param string $actions  The available actions (HTML) for each revision in the list.
     1862                * @param int    $revision The revision id.
     1863                * @param int    $post_id  The revision's parent post id.
     1864                */
     1865                apply_filters( 'wp_post_revision_actions', '', $revision, $post_id ) .
     1866                "</li>\n";
    18551867        }
    18561868
    18571869        echo "<div class='hide-if-js'><p>" . __( 'JavaScript must be enabled to use this feature.' ) . "</p></div>\n";