Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/3.6.0 #810

Merged
merged 2 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions php/classes/handlers/class-admin-notifications-handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -448,10 +448,10 @@ public function check_existing_podcasts() {
*/
public function existing_episodes_notice() {
$hosting_tab_url = ssp_get_tab_url( 'castos-hosting' );
$ignore_message_url = add_query_arg( array(
$ignore_message_url = esc_url( add_query_arg( array(
'podcast_import_action' => 'ignore',
'nonce' => wp_create_nonce( 'podcast_import_action' ),
) );
) ) );
$message = '';
$message .= '<p>You\'ve connected to your Castos account, and you have existing podcasts that can be synced.</p>';
$message .= '<p>You can <a href="' . $hosting_tab_url . '">sync your existing podcasts to Castos now.</a></p>';
Expand Down
4 changes: 2 additions & 2 deletions php/classes/handlers/class-options-handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ public function options_fields() {

$subscribe_options_array = $this->get_subscribe_field_options();

$feed_details_url = add_query_arg(
$feed_details_url = esc_url( add_query_arg(
array(
'post_type' => SSP_CPT_PODCAST,
'page' => 'podcast_settings',
'tab' => 'feed-details',
)
);
) );

$options['subscribe'] = array(
'title' => __( 'Distribution options', 'seriously-simple-podcasting' ),
Expand Down
4 changes: 2 additions & 2 deletions seriously-simple-podcasting.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Plugin Name: Seriously Simple Podcasting
* Version: 3.6.0-alpha.2
* Version: 3.6.0-alpha.3
* Plugin URI: https://castos.com/seriously-simple-podcasting/?utm_medium=sspodcasting&utm_source=wordpress&utm_campaign=wpplugin_08_2019
* Description: Podcasting the way it's meant to be. No mess, no fuss - just you and your content taking over the world.
* Author: Castos
Expand All @@ -22,7 +22,7 @@
exit;
}

define( 'SSP_VERSION', '3.6.0-alpha.2' );
define( 'SSP_VERSION', '3.6.0-alpha.3' );
define( 'SSP_PLUGIN_FILE', __FILE__ );
define( 'SSP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'SSP_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
Expand Down
250 changes: 0 additions & 250 deletions templates/ssp-analytics.php

This file was deleted.

Loading