Skip to content

Commit

Permalink
Resolve PHP compatibility issues with shorthand PHP tags
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0ttkclark committed Feb 2, 2021
1 parent 4f1bb6c commit 79e78be
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion admin/shows.php
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ function gigpress_admin_shows() {
<td><?php echo $showdata['country']; ?></td>
<td><?php echo $showdata['tour']; ?></td>
<td class="gp-centre">
<? if ( 'deleted' === $scope ) : ?>
<?php if ( 'deleted' === $scope ) : ?>
<a href="<?php echo wp_nonce_url( admin_url( 'admin.php?page=gigpress-shows&amp;scope=deleted&amp;gpaction=restore&amp;show_id=' . $show->show_id ), 'gigpress-action' ); ?>" class="edit" title="<?php _e("Restore", "gigpress"); ?>"><?php _e("Restore", "gigpress"); ?></a>
<?php else : ?>
<a href="<?php echo admin_url( 'admin.php?page=gigpress&amp;gpaction=edit&amp;show_id='.$show->show_id ); ?>" class="edit" title="<?php esc_attr_e( 'Edit', 'gigpress' ); ?>"><?php esc_html_e( 'Edit', 'gigpress' ); ?></a>&nbsp;|&nbsp;<a href="<?php echo admin_url('admin.php?page=gigpress&amp;gpaction=copy&amp;show_id='. $show->show_id); ?>" class="edit" title="<?php esc_attr_e( 'Copy', 'gigpress' ); ?>"><?php esc_html_e( 'Copy', 'gigpress' ); ?></a>
Expand Down
4 changes: 2 additions & 2 deletions gigpress.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: GigPress
* Plugin URI: https://evnt.is/1aca
* Description: GigPress is a live performance listing and management plugin built for musicians and performers.
* Version: 2.3.25
* Version: 2.3.25.1
* Author: The Events Calendar
* Author URI: https://evnt.is/1aor
* Text Domain: gigpress
Expand Down Expand Up @@ -46,7 +46,7 @@
}

if ( ! defined( 'GIGPRESS_VERSION' ) ) {
define( 'GIGPRESS_VERSION', '2.3.23' );
define( 'GIGPRESS_VERSION', '2.3.25.1' );
}

if ( ! defined( 'GIGPRESS_DB_VERSION' ) ) {
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: theeventscalendar, brianjessee, camwynsp, paulkim, sc0ttkclark, ag
Tags: concerts, bands, tours, shows, record labels, music, musicians, performers, artists
Requires at least: 4.5
Tested up to: 5.6
Stable tag: 2.3.25
Stable tag: 2.3.25.1

GigPress is a live performance listing and management plugin that's been serving musicians and performers since 2007.

Expand Down Expand Up @@ -36,6 +36,10 @@ If you want to go beyond GigPress, we also have other plugins that could work gr

== Changelog ==

= 2.3.25.1 [2021-02-02] =

* Fix - Resolve PHP compatibility issues with shorthand PHP tags.

= 2.3.25 [2021-02-01] =

* Fix - When saving an existing show, it now correctly loads the show edit form again with success message.
Expand Down

0 comments on commit 79e78be

Please sign in to comment.