Changeset 9683
- Timestamp:
- 04/02/2020 02:29:50 AM (6 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table
- Files:
-
- 2 edited
-
class-committers.php (modified) (2 diffs)
-
class-support-reps.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-committers.php
r8034 r9683 105 105 <tbody id="the-committer-list" data-wp-lists="list:committer"> 106 106 <?php $this->display_rows_or_placeholder(); ?> 107 <?php $this->display_add_new_row(); ?> 107 108 </tbody> 108 109 </table> … … 119 120 echo "\n\t" . $this->single_row( $user_object ); 120 121 } 122 } 123 124 /** 125 * Display the "Add new" row. 126 */ 127 public function display_add_new_row() { 121 128 ?> 122 129 <tr id="add-committer" class="add-committer wp-hidden-children"> -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-support-reps.php
r8034 r9683 105 105 <tbody id="the-support-rep-list" data-wp-lists="list:support-rep"> 106 106 <?php $this->display_rows_or_placeholder(); ?> 107 <?php $this->display_add_new_row(); ?> 107 108 </tbody> 108 109 </table> … … 119 120 echo "\n\t" . $this->single_row( $user_object ); 120 121 } 122 } 123 124 /** 125 * Display the "Add new" row. 126 */ 127 public function display_add_new_row() { 121 128 ?> 122 129 <tr id="add-support-rep" class="add-support-rep wp-hidden-children">
Note: See TracChangeset
for help on using the changeset viewer.