Changeset 2538
- Timestamp:
- 02/19/2016 08:07:46 PM (9 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/payment-requests-list-table.php
r2366 r2538 136 136 */ 137 137 public function column_payment( $request ) { 138 $title = empty( $request->post_title ) ? '(no title)' : $request->post_title; 138 139 $edit_post_link = add_query_arg( array( 'post' => $request->ID, 'action' => 'edit' ), admin_url( 'post.php' ) ); 139 140 $actions = array( … … 143 144 return sprintf( '<a href="%s" class="row-title" target="_blank">%s</a>%s', 144 145 esc_url( $edit_post_link ), 145 esc_html( $ request->post_title ),146 esc_html( $title ), 146 147 $this->row_actions( $actions ) 147 148 ); -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/reimbursement-requests-list-table.php
r2393 r2538 80 80 */ 81 81 protected function column_request_title( $index_row ) { 82 $title = empty( $index_row->request_title ) ? '(no title)' : $index_row->request_title; 83 82 84 $edit_url = get_admin_url( 83 85 $index_row->blog_id, … … 89 91 90 92 <a href="<?php echo esc_url( $edit_url ); ?>"> 91 <?php echo esc_html( $ index_row->request_title ); ?>93 <?php echo esc_html( $title ); ?> 92 94 </a> 93 95 -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/sponsor-invoices-list-table.php
r2355 r2538 87 87 */ 88 88 protected function column_invoice_title( $index_row ) { 89 $title = empty( $index_row->invoice_title ) ? '(no title)' : $index_row->invoice_title; 90 89 91 $edit_url = get_admin_url( 90 92 $index_row->blog_id, … … 96 98 97 99 <a href="<?php echo esc_url( $edit_url ); ?>"> 98 <?php echo esc_html( $ index_row->invoice_title ); ?>100 <?php echo esc_html( $title ); ?> 99 101 </a> 100 102
Note: See TracChangeset
for help on using the changeset viewer.