Skip to content

Commit b15b985

Browse files
committed
Release 5.2.3
1 parent 23a9373 commit b15b985

File tree

4 files changed

+20
-9
lines changed

4 files changed

+20
-9
lines changed

backwpup.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: WordPress Backup Plugin
66
* Author: BackWPup – WordPress Backup & Restore Plugin
77
* Author URI: https://backwpup.com
8-
* Version: 5.2.2
8+
* Version: 5.2.3
99
* Requires at least: 4.9
1010
* Requires PHP: 7.4
1111
* Text Domain: backwpup
@@ -17,8 +17,14 @@
1717
use WPMedia\BackWPup\Dependencies\League\Container\Container;
1818
use WPMedia\BackWPup\Plugin\Plugin;
1919

20+
if ( defined( 'BACKWPUP_PLUGIN_LOADED' ) || class_exists( \BackWPup::class, false ) ) {
21+
return;
22+
}
23+
2024
define( 'BACKWPUP_PLUGIN_FILE', __FILE__ );
2125

26+
define( 'BACKWPUP_PLUGIN_LOADED', true );
27+
2228
// Include the Composer autoload file.
2329
if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {
2430
require_once __DIR__ . '/vendor/autoload.php';

changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
== Changelog ==
2+
= 5.2.3 =
3+
Release date: May 22, 2025
4+
5+
* Bugfix: Fixed fatal error when both Free and Pro versions are activated together.
6+
27
= 5.2.2 =
38
Release date: May 20, 2025
49

languages/backwpup.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ msgstr ""
66
"MIME-Version: 1.0\n"
77
"Content-Type: text/plain; charset=UTF-8\n"
88
"Content-Transfer-Encoding: 8bit\n"
9-
"POT-Creation-Date: 2025-05-20 07:05+0000\n"
9+
"POT-Creation-Date: 2025-05-22 13:26+0000\n"
1010
"X-Poedit-Basepath: ..\n"
1111
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
1212
"X-Poedit-SearchPath-0: .\n"
@@ -35,7 +35,7 @@ msgid "https://backwpup.com"
3535
msgstr ""
3636

3737
#. translators: %1$s is the minimum PHP version, %2$s is the minimum WordPress version.
38-
#: backwpup.php:50
38+
#: backwpup.php:56
3939
msgid "BackWPup requires PHP version %1$s with spl extension or greater and WordPress %2$s or greater."
4040
msgstr ""
4141

vendor/composer/installed.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php return array(
22
'root' => array(
33
'name' => 'inpsyde/backwpup-pro',
4-
'pretty_version' => '5.2.2',
5-
'version' => '5.2.2.0',
6-
'reference' => 'ed067ed160d34012747109be5e66a1ca4c9162ed',
4+
'pretty_version' => '5.2.3',
5+
'version' => '5.2.3.0',
6+
'reference' => '45c44448accb56dfd6e115b7ed5008158f28b488',
77
'type' => 'wordpress-plugin',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -224,9 +224,9 @@
224224
'dev_requirement' => false,
225225
),
226226
'inpsyde/backwpup-pro' => array(
227-
'pretty_version' => '5.2.2',
228-
'version' => '5.2.2.0',
229-
'reference' => 'ed067ed160d34012747109be5e66a1ca4c9162ed',
227+
'pretty_version' => '5.2.3',
228+
'version' => '5.2.3.0',
229+
'reference' => '45c44448accb56dfd6e115b7ed5008158f28b488',
230230
'type' => 'wordpress-plugin',
231231
'install_path' => __DIR__ . '/../../',
232232
'aliases' => array(),

0 commit comments

Comments
 (0)