Skip to content

Commit

Permalink
Merge pull request #26 from moderntribe/fix/85214-tweaks
Browse files Browse the repository at this point in the history
fix silly fatal
  • Loading branch information
zbtirrell authored Aug 21, 2017
2 parents 5e57e60 + b4b0e61 commit 2d6721a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ function gigpress_settings() {
<input type="hidden" name="gigpress_settings[default_date]" value="<?php echo esc_attr( $gpo['default_date'] ); ?>" />
<input type="hidden" name="gigpress_settings[default_time]" value="<?php echo esc_attr( $gpo['default_time'] ); ?>" />
<input type="hidden" name="gigpress_settings[default_tour]" value="<?php echo esc_attr( $gpo['default_tour'] ); ?>" />
<input type="hidden" name="gigpress_settings[default_artist]" value="<?php isset( $gpo['default_artist'] ) ? echo esc_attr( $gpo['default_artist'] ) : ''; ?>" />
<input type="hidden" name="gigpress_settings[default_artist]" value="<?php echo isset( $gpo['default_artist'] ) ? esc_attr( $gpo['default_artist'] ) : ''; ?>" />
<input type="hidden" name="gigpress_settings[default_title]" value="<?php echo esc_attr( $gpo['default_title'] ); ?>" />
<input type="hidden" name="gigpress_settings[related_date]" value="<?php echo esc_attr( $gpo['related_date'] ); ?>" />
<input type="hidden" name="gigpress_settings[welcome]" value="<?php echo esc_attr( $gpo['welcome'] ); ?>" />
Expand Down

0 comments on commit 2d6721a

Please sign in to comment.