Skip to content

Commit

Permalink
Fix wrong table cell classes
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-mendonca committed Oct 1, 2024
1 parent b018289 commit 390ca1d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gp-templates/gptoolbox-meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@

?>
<tr gptoolboxdata-meta="<?php echo esc_attr( strval( $meta->meta_id ) ); ?>">
<td class="id"><?php echo esc_html( strval( $meta->meta_id ) ); ?></td>
<td class="meta-id"><?php echo esc_html( strval( $meta->meta_id ) ); ?></td>
<td class="object-type"><?php echo esc_html( strval( $meta->object_type ) ); ?></td>
<td class="object-id"><?php echo esc_html( strval( $meta->object_id ) ); ?></td>
<td class="object-id"><?php echo esc_html( strval( $meta->meta_key ) ); ?></td>
<td class="object-id"><?php echo esc_html( strval( $meta->meta_value ) ); ?></td>
<td class="object-meta-key"><?php echo esc_html( strval( $meta->meta_key ) ); ?></td>
<td class="object-meta-value"><?php echo esc_html( strval( $meta->meta_value ) ); ?></td>
<?php
/*

Check warning on line 150 in gp-templates/gptoolbox-meta.php

View workflow job for this annotation

GitHub Actions / PHP coding standards

This comment is 54% valid code; is this commented out code?

Check failure on line 151 in gp-templates/gptoolbox-meta.php

View workflow job for this annotation

GitHub Actions / PHP coding standards

Empty line not allowed at start of comment
Expand Down

0 comments on commit 390ca1d

Please sign in to comment.