From 0c4d553e1d61ba6f348aca803c5a778dae3d01f0 Mon Sep 17 00:00:00 2001 From: Luiz Bills Date: Wed, 18 Jan 2023 07:41:45 -0300 Subject: [PATCH] 1.9.2 --- inc/settings.php | 2 +- readme.txt | 6 +++++- wp-tweaks.php | 3 +-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/inc/settings.php b/inc/settings.php index 999df00..db6cc3a 100644 --- a/inc/settings.php +++ b/inc/settings.php @@ -255,7 +255,7 @@ public static function get_settings () { } public function add_settings_link ( $links ) { - $settings_link = '' . esc_html__( 'Settings', 'wp-tweaks' ) . ''; + $settings_link = '' . esc_html__( 'Settings', 'wp-tweaks' ) . ''; return array_merge( [ $settings_link ], $links ); } diff --git a/readme.txt b/readme.txt index 6fae958..07d9259 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Donate link: https://www.luizpb.com/donate/ Requires at least: 4.0 Tested up to: 6.1 Requires PHP: 5.4 -Stable tag: 1.9.1 +Stable tag: 1.9.2 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -55,6 +55,10 @@ Support this plugin on [https://luizpb.com/donate/](https://luizpb.com/donate/) == Changelog == += 1.9.2 - 2023-01-18 = + +* Fix settings link. + = 1.9.1 - 2023-01-11 = * Removed "Disallow your site in iframes" option. Utilize the "Security Headers" option instead. diff --git a/wp-tweaks.php b/wp-tweaks.php index 70da1de..7745676 100644 --- a/wp-tweaks.php +++ b/wp-tweaks.php @@ -3,7 +3,7 @@ * Plugin Name: WP Tweaks * Plugin URI: https://github.com/luizbills/wp-tweaks * Description: Several opinionated WordPress tweaks focused in security and performance. - * Version: 1.9.1 + * Version: 1.9.2 * Requires at least: 4.0 * Requires PHP: 5.4 * Author: Luiz Bills @@ -20,7 +20,6 @@ class WP_Tweaks { - const VERSION = '1.9'; const FILE = __FILE__; const DIR = __DIR__; const PREFIX = 'wp_tweaks_';