Skip to content

Commit

Permalink
Merge pull request #374 from publishpress/feature/release-2.7.4
Browse files Browse the repository at this point in the history
Feature/release 2.7.4
  • Loading branch information
olatechpro authored Jan 20, 2022
2 parents f345067 + 03c6be8 commit 854d14b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion orgSeries-options.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ function orgseries_option_page() {
<div class="icon32" id="icon-options-general"><br /></div>
<h2><?php esc_html_e('PublishPress Series Plugin Options', 'organize-series'); ?></h2>
<?php
echo esc_html($org_update_message);
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo $org_update_message;
update_option('orgseries_update_message','');
?>

Expand Down
4 changes: 2 additions & 2 deletions orgSeries.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: PublishPress Series
* Plugin URI: https://publishpress.com/publishpress-series/
* Description: PublishPress Series allows you to group content together into a series. This is ideal for magazines, newspapers, short-story writers, teachers, comic artists, or anyone who writes multiple posts on the same topic.
* Version: 2.7.3
* Version: 2.7.4
* Author: PublishPress
* Author URI: https://publishpress.com/
* Text Domain: organize-series
Expand Down Expand Up @@ -59,7 +59,7 @@
register_activation_hook( __FILE__, 'pp_series_core_activation' );

if (!defined('ORG_SERIES_VERSION')) {
define('ORG_SERIES_VERSION', '2.7.3'); //the current version of the plugin
define('ORG_SERIES_VERSION', '2.7.4'); //the current version of the plugin
define( 'SERIES_FILE_PATH', __FILE__ );
define( 'SERIES_PATH_URL', plugins_url('', __FILE__).'/' );
define('SERIES_LOC', plugins_url('', __FILE__).'/' ); //the uri of the orgSeries files.
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: category, series, organize, post, taxonomy
Requires at least: 4.7
Requires PHP: 5.6
Tested up to: 5.8
Stable tag: 2.7.3
Stable tag: 2.7.4
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -130,6 +130,9 @@ Yes, you can In the `organize-series` folder you'll see a file called `seriestoc

== Changelog ==

v2.7.4- 2022-01-20
* Fixed: Series option update message

v2.7.3- 2022-01-20
* Fixed: HTML tags being stripped when saving #362
* Fixed: PHP Warning: Undefined array key #354
Expand Down

0 comments on commit 854d14b

Please sign in to comment.