Skip to content

Commit

Permalink
make ipstenu happy
Browse files Browse the repository at this point in the history
  • Loading branch information
tobeyadr committed Apr 30, 2021
1 parent c2d1fa4 commit 77e61f5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Donate link: https://wpsimplechat.com
Requires at least: 4.9
Tested up to: 5.7
Requires PHP: 5.6
Stable tag: trunk
Stable tag: 1.1.8
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl.md

Expand Down Expand Up @@ -81,8 +81,8 @@ No, once a visitor starts the chat it opens the chat in their Facebook Messenger

== Changelog ==

= 1.1.6 & 1.1.7 =
* TWEAKED Removed "Facebook" from plugin display name.
= 1.1.6-1.1.8 =
* TWEAKED Removed "Facebook" from plugin display name and plugin image assets.

= 1.1.5 =
* ADDED Groundhogg affiliation.
Expand Down
1 change: 1 addition & 0 deletions includes/core/admin/admin-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use function ExtendedCore\get_request_var;
use function ExtendedCore\isset_not_empty;
use function SimpleChat\html;

/**
* Abstract Admin Page
Expand Down
2 changes: 1 addition & 1 deletion includes/core/includes/html.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function hidden_GET_inputs( $echo = true ) {
$html = '';

foreach ( $_GET as $key => $value ) {
$html .= $this->input( [ 'type' => 'hidden', 'name' => $key, 'value' => $value ] );
$html .= $this->input( [ 'type' => 'hidden', 'name' => sanitize_key( $key ), 'value' => sanitize_text_field( $value ) ] );
}

if ( $echo ) {
Expand Down
4 changes: 2 additions & 2 deletions wp-simple-chat.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WP Simple Chat
* Plugin URI: https://wpsimplechat.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
* Description: A simple way to include the Facebook Chat Plugin on your website.
* Version: 1.1.7
* Version: 1.1.8
* Author: Groundhogg Inc.
* Author URI: https://wpsimplechat.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
* Text Domain: wp-simple-chat
Expand All @@ -22,7 +22,7 @@

if ( ! defined( 'ABSPATH' ) ) exit;

define( 'SIMPLE_CHAT_VERSION', '1.1.7' );
define( 'SIMPLE_CHAT_VERSION', '1.1.8' );
define( 'SIMPLE_CHAT_PREVIOUS_STABLE_VERSION', '1.1.6' );

define( 'SIMPLE_CHAT__FILE__', __FILE__ );
Expand Down

0 comments on commit 77e61f5

Please sign in to comment.