Skip to content

Commit

Permalink
closing tr tags properly
Browse files Browse the repository at this point in the history
  • Loading branch information
fyaconiello committed Feb 20, 2014
1 parent 7f962e3 commit 1240c17
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/post-type-template_metabox.php
Expand Up @@ -6,21 +6,21 @@
<td>
<input type="text" id="meta_a" name="meta_a" value="<?php echo @get_post_meta($post->ID, 'meta_a', true); ?>" />
</td>
<tr>
</tr>
<tr valign="top">
<th class="metabox_label_column">
<label for="meta_a">Meta B</label>
</th>
<td>
<input type="text" id="meta_b" name="meta_b" value="<?php echo @get_post_meta($post->ID, 'meta_b', true); ?>" />
</td>
<tr>
</tr>
<tr valign="top">
<th class="metabox_label_column">
<label for="meta_a">Meta C</label>
</th>
<td>
<input type="text" id="meta_c" name="meta_c" value="<?php echo @get_post_meta($post->ID, 'meta_c', true); ?>" />
</td>
<tr>
</table>
</tr>
</table>

0 comments on commit 1240c17

Please sign in to comment.