Make WordPress Core


Ignore:
Timestamp:
10/23/2010 11:22:00 AM (14 years ago)
Author:
scribu
Message:

Use row_actions() in WP_Plugins_Table. See #14579

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/default-list-tables.php

    r15912 r15924  
    36073607            <td></td>
    36083608            <td class='plugin-title'>";
    3609             echo '<div class="row-actions-visible">';
    3610             foreach ( $actions as $action => $link ) {
    3611                 $sep = end( $actions ) == $link ? '' : ' | ';
    3612                 echo "<span class='$action'>$link$sep</span>";
    3613             }
    3614             echo "</div></td>
     3609
     3610            echo $this->row_actions( $actions, true );
     3611
     3612            echo "</td>
    36153613            <td class='desc'>";
    36163614            $plugin_meta = array();
Note: See TracChangeset for help on using the changeset viewer.