Skip to content

Commit

Permalink
Removed short tags from admin class.
Browse files Browse the repository at this point in the history
  • Loading branch information
growdev committed Sep 7, 2016
1 parent 64d38ae commit 2622f76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/class-convertkit-pmp-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -287,11 +287,11 @@ public function display_options_convertkit_mapping( $args ) {
name="<?php echo $this->plugin_name; ?>-options[<?php echo $option_name ?>]"><?php
if ( empty( $tag ) ) {
?>
<option value=""><?php echo __( 'Select a tag', 'convertkit-pmp' ); ?></option><?
<option value=""><?php echo __( 'Select a tag', 'convertkit-pmp' ); ?></option><?php
}
foreach ( $args['tags'] as $value => $text ) {
?>
<option value="<?php echo $value; ?>" <?php selected( $tag, $value ); ?>><?php echo $text; ?></option><?
<option value="<?php echo $value; ?>" <?php selected( $tag, $value ); ?>><?php echo $text; ?></option><?php
}
?></select><?php
}
Expand Down

0 comments on commit 2622f76

Please sign in to comment.