LuckyWP Table of Contents - Version 1.2.2

Version Description

  • Bug fix
Download this release

Release Info

Developer theluckywp
Plugin Icon 128x128 LuckyWP Table of Contents
Version 1.2.2
Comparing to
See all releases

Code changes from version 1.2.1 to 1.2.2

luckywp-table-of-contents.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: LuckyWP Table of Contents
4
  Plugin URI: https://theluckywp.com/product/table-of-contents/
5
  Description: Creates a table of contents for your posts/pages. Works automatically or manually (via shortcode or Gutenberg block).
6
- Version: 1.2.1
7
  Author: LuckyWP
8
  Author URI: https://theluckywp.com/
9
  Text Domain: lwptoc
@@ -29,6 +29,6 @@ $lwptocAutoloader->register();
29
  $lwptocAutoloader->addNamespace('luckywp\tableOfContents', __DIR__);
30
 
31
  $config = require(__DIR__ . '/config/plugin.php');
32
- (new \luckywp\tableOfContents\plugin\Plugin($config))->run('1.2.1', __FILE__, 'lwptoc_');
33
 
34
  require_once __DIR__ . '/functions.php';
3
  Plugin Name: LuckyWP Table of Contents
4
  Plugin URI: https://theluckywp.com/product/table-of-contents/
5
  Description: Creates a table of contents for your posts/pages. Works automatically or manually (via shortcode or Gutenberg block).
6
+ Version: 1.2.2
7
  Author: LuckyWP
8
  Author URI: https://theluckywp.com/
9
  Text Domain: lwptoc
29
  $lwptocAutoloader->addNamespace('luckywp\tableOfContents', __DIR__);
30
 
31
  $config = require(__DIR__ . '/config/plugin.php');
32
+ (new \luckywp\tableOfContents\plugin\Plugin($config))->run('1.2.2', __FILE__, 'lwptoc_');
33
 
34
  require_once __DIR__ . '/functions.php';
plugin/Shortcode.php CHANGED
@@ -190,7 +190,7 @@ class Shortcode extends BaseObject
190
  if (function_exists('transliterator_transliterate')) {
191
  $id = transliterator_transliterate('Any-Latin; Latin-ASCII;', $id);
192
  }
193
- $id = preg_replace('/[^\d-_A-Za-z ]+/', '', $id);
194
  $id = preg_replace('/ +/', ' ', $id);
195
  $id = trim($id);
196
  $id = str_replace(' ', '_', $id);
190
  if (function_exists('transliterator_transliterate')) {
191
  $id = transliterator_transliterate('Any-Latin; Latin-ASCII;', $id);
192
  }
193
+ $id = preg_replace('/[^\d\-_A-Za-z ]+/', '', $id);
194
  $id = preg_replace('/ +/', ' ', $id);
195
  $id = trim($id);
196
  $id = str_replace(' ', '_', $id);
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://theluckywp.com/product/table-of-contents/
4
  Tags: table of contents, toc, navigation, links, heading
5
  Requires at least: 4.7
6
  Tested up to: 5.1.1
7
- Stable tag: 1.2.1
8
  Requires PHP: 5.6.20
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -124,6 +124,9 @@ For non-English websites it is recommended to enable the `Intl` PHP extension.
124
 
125
  == Changelog ==
126
 
 
 
 
127
  = 1.2.1 =
128
  * Enhancements for more compatible with themes.
129
 
4
  Tags: table of contents, toc, navigation, links, heading
5
  Requires at least: 4.7
6
  Tested up to: 5.1.1
7
+ Stable tag: 1.2.2
8
  Requires PHP: 5.6.20
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
124
 
125
  == Changelog ==
126
 
127
+ = 1.2.2 =
128
+ * Bug fix
129
+
130
  = 1.2.1 =
131
  * Enhancements for more compatible with themes.
132