Skip to content

Commit 52639d0

Browse files
authored
Merge pull request #377 from mainwp/mainwp-child-dev
MainWP Child Dev
2 parents 62224d5 + 2c60e98 commit 52639d0

4 files changed

Lines changed: 12 additions & 3 deletions

File tree

class/class-mainwp-child-server-information.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1317,6 +1317,9 @@ protected static function render_last_lines( $path, $line_count, $block_size = 5
13171317

13181318
// phpcs:disable WordPress.WP.AlternativeFunctions -- to custom read file.
13191319
$fh = fopen( $path, 'r' );
1320+
if ( false === $fh || ! is_resource( $fh ) ) {
1321+
return $lines;
1322+
}
13201323
// go to the end of the file.
13211324
fseek( $fh, 0, SEEK_END );
13221325

class/class-mainwp-child.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class MainWP_Child {
3333
*
3434
* @var string MainWP Child plugin version.
3535
*/
36-
public static $version = '4.4.1-beta1';
36+
public static $version = '4.4.1';
3737

3838
/**
3939
* Private variable containing the latest MainWP Child update version.

mainwp-child.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Author: MainWP
1313
* Author URI: https://mainwp.com
1414
* Text Domain: mainwp-child
15-
* Version: 4.4.1-beta1
15+
* Version: 4.4.1
1616
* Requires at least: 5.4
1717
* Requires PHP: 7.4
1818
*/

readme.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Plugin URI: https://mainwp.com
77
Requires at least: 5.4
88
Tested up to: 6.2
99
Requires PHP: 7.0
10-
Stable tag: 4.4.1-beta1
10+
Stable tag: 4.4.1
1111
License: GPLv3 or later
1212
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1313

@@ -147,6 +147,12 @@ Sure we have a quick FAQ with a lot more questions and answers [here](https://ma
147147

148148
== Changelog ==
149149

150+
= 4.4.1 - 4-18-2023 =
151+
* Fixed: An issue with saving code snippets
152+
* Fixed: A problem with removing allowed tags in post titles
153+
* Fixed: Multiple PHP warnings
154+
* Added: Check for specific hosts that disable WordPress Core updates for users
155+
150156
= 4.4.0.4 - 3-30-2023 =
151157
* Fixed: JS conflict caused by the Hide Jetpack plugin feature
152158

0 commit comments

Comments
 (0)