Changeset 5193
- Timestamp:
- 03/29/2017 01:25:18 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-committers.php
r5121 r5193 55 55 <?php echo Template::encode( $committer->display_name ); ?> 56 56 </a><br> 57 58 <?php if ( current_user_can( 'plugin_remove_committer', $post ) ) : ?> 57 59 <small> 58 60 <?php echo current_user_can( 'plugin_review' ) ? esc_html( $committer->user_email ) . ' ' : ''; ?> 59 61 <button class="button-link remove"><?php _e( 'Remove', 'wporg-plugins' ); ?></button> 60 62 </small> 63 <?php else: // This is a hack to avoid doing CSS to make the rows not stack badly. someone fix this please. ?> 64 <br> 65 <?php endif; ?> 61 66 </li> 62 67 <?php endforeach; ?> 63 68 69 <?php if ( current_user_can( 'plugin_add_committer', $post ) ) : ?> 64 70 <li class="new"> 65 71 <form id="add-committer" action="POST"> … … 68 74 </form> 69 75 </li> 76 <?php endif; ?> 70 77 </ul> 71 78 <script id="tmpl-new-committer" type="text/template">
Note: See TracChangeset
for help on using the changeset viewer.