Version Description
- Fixed case-sensitive class call, apparently not all PHP versions are equal in how this is treated.
Download this release
Release Info
Developer | Clorith |
Plugin | String locator |
Version | 2.4.1 |
Comparing to | |
See all releases |
Code changes from version 2.4.0 to 2.4.1
- includes/class-string-locator.php +1 -1
- readme.txt +4 -1
- string-locator.php +2 -2
includes/class-string-locator.php
CHANGED
@@ -18,7 +18,7 @@ class String_Locator {
|
|
18 |
* @var int $max_memory_consumption The server-configured max amount of memory a script can use.
|
19 |
*/
|
20 |
public $string_locator_language = '';
|
21 |
-
public $version = '2.4.
|
22 |
public $notice = array();
|
23 |
public $failed_edit = false;
|
24 |
private $path_to_use = '';
|
18 |
* @var int $max_memory_consumption The server-configured max amount of memory a script can use.
|
19 |
*/
|
20 |
public $string_locator_language = '';
|
21 |
+
public $version = '2.4.1';
|
22 |
public $notice = array();
|
23 |
public $failed_edit = false;
|
24 |
private $path_to_use = '';
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Donate link: https://www.paypal.me/clorith
|
|
6 |
Tags: theme, plugin, text, search, find, editor, syntax, highlight
|
7 |
Requires at least: 4.9
|
8 |
Tested up to: 5.4
|
9 |
-
Stable tag: 2.4.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -45,6 +45,9 @@ When writing your search string, make sure to wrap your search in forward slashe
|
|
45 |
|
46 |
== Changelog ==
|
47 |
|
|
|
|
|
|
|
48 |
= 2.4.0 =
|
49 |
* Updated the editor screen, to a design which more closely adheres to the WordPress editor styles.
|
50 |
* Added support for searching files, even if you are not able to edit them.
|
6 |
Tags: theme, plugin, text, search, find, editor, syntax, highlight
|
7 |
Requires at least: 4.9
|
8 |
Tested up to: 5.4
|
9 |
+
Stable tag: 2.4.1
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
45 |
|
46 |
== Changelog ==
|
47 |
|
48 |
+
= 2.4.1 =
|
49 |
+
* Fixed case-sensitive class call, apparently not all PHP versions are equal in how this is treated.
|
50 |
+
|
51 |
= 2.4.0 =
|
52 |
* Updated the editor screen, to a design which more closely adheres to the WordPress editor styles.
|
53 |
* Added support for searching files, even if you are not able to edit them.
|
string-locator.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: String Locator
|
4 |
* Plugin URI: http://www.clorith.net/wordpress-string-locator/
|
5 |
* Description: Scan through theme and plugin files looking for text strings
|
6 |
-
* Version: 2.4.
|
7 |
* Author: Clorith
|
8 |
* Author URI: http://www.clorith.net
|
9 |
* Text Domain: string-locator
|
@@ -37,4 +37,4 @@ require_once( __DIR__ . '/includes/class-string-locator.php' );
|
|
37 |
/**
|
38 |
* Instantiate the plugin
|
39 |
*/
|
40 |
-
$string_locator = new
|
3 |
* Plugin Name: String Locator
|
4 |
* Plugin URI: http://www.clorith.net/wordpress-string-locator/
|
5 |
* Description: Scan through theme and plugin files looking for text strings
|
6 |
+
* Version: 2.4.1
|
7 |
* Author: Clorith
|
8 |
* Author URI: http://www.clorith.net
|
9 |
* Text Domain: string-locator
|
37 |
/**
|
38 |
* Instantiate the plugin
|
39 |
*/
|
40 |
+
$string_locator = new String_Locator();
|