Version Description
Download this release
Release Info
Developer | dlocc |
Plugin | Give – Donation Plugin and Fundraising Platform |
Version | 2.5.6 |
Comparing to | |
See all releases |
Code changes from version 2.5.5 to 2.5.6
- give.php +2 -2
- includes/gateways/stripe/class-give-stripe.php +36 -1
- languages/give.pot +7 -3
- readme.txt +5 -1
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +4 -4
give.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: The most robust, flexible, and intuitive way to accept donations on WordPress.
|
6 |
* Author: GiveWP
|
7 |
* Author URI: https://givewp.com/
|
8 |
-
* Version: 2.5.
|
9 |
* Text Domain: give
|
10 |
* Domain Path: /languages
|
11 |
*
|
@@ -439,7 +439,7 @@ if ( ! class_exists( 'Give' ) ) :
|
|
439 |
|
440 |
// Plugin version.
|
441 |
if ( ! defined( 'GIVE_VERSION' ) ) {
|
442 |
-
define( 'GIVE_VERSION', '2.5.
|
443 |
}
|
444 |
|
445 |
// Plugin Root File.
|
5 |
* Description: The most robust, flexible, and intuitive way to accept donations on WordPress.
|
6 |
* Author: GiveWP
|
7 |
* Author URI: https://givewp.com/
|
8 |
+
* Version: 2.5.6
|
9 |
* Text Domain: give
|
10 |
* Domain Path: /languages
|
11 |
*
|
439 |
|
440 |
// Plugin version.
|
441 |
if ( ! defined( 'GIVE_VERSION' ) ) {
|
442 |
+
define( 'GIVE_VERSION', '2.5.6' );
|
443 |
}
|
444 |
|
445 |
// Plugin Root File.
|
includes/gateways/stripe/class-give-stripe.php
CHANGED
@@ -66,8 +66,43 @@ if ( ! class_exists( 'Give_Stripe' ) ) {
|
|
66 |
// Load files which are necessary for front as well as admin end.
|
67 |
require_once GIVE_PLUGIN_DIR . 'includes/gateways/stripe/includes/give-stripe-helpers.php';
|
68 |
|
69 |
-
// Bailout, if any of the Stripe
|
70 |
if ( ! give_stripe_is_any_payment_method_active() ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
return;
|
72 |
}
|
73 |
|
66 |
// Load files which are necessary for front as well as admin end.
|
67 |
require_once GIVE_PLUGIN_DIR . 'includes/gateways/stripe/includes/give-stripe-helpers.php';
|
68 |
|
69 |
+
// Bailout, if any of the Stripe gateways are not active.
|
70 |
if ( ! give_stripe_is_any_payment_method_active() ) {
|
71 |
+
|
72 |
+
// If `get_plugin_data` fn not exists then include the file.
|
73 |
+
if ( ! function_exists( 'get_plugin_data' ) ) {
|
74 |
+
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
75 |
+
}
|
76 |
+
|
77 |
+
// Hardcoded recurring plugin basename to show notice even when recurring addon is deactivated.
|
78 |
+
$recurring_plugin_basename = 'give-recurring/give-recurring.php';
|
79 |
+
$recurring_plugin_data = get_plugin_data( WP_CONTENT_DIR . '/plugins/' . $recurring_plugin_basename );
|
80 |
+
|
81 |
+
// Avoid fatal error for smooth update for customers.
|
82 |
+
if (
|
83 |
+
isset( $recurring_plugin_data['Version'] ) &&
|
84 |
+
version_compare( '1.9.3', $recurring_plugin_data['Version'], '>=' )
|
85 |
+
) {
|
86 |
+
add_action( 'admin_notices', function() {
|
87 |
+
|
88 |
+
// Register error notice.
|
89 |
+
Give()->notices->register_notice(
|
90 |
+
array(
|
91 |
+
'id' => 'give-recurring-fatal-error',
|
92 |
+
'type' => 'error',
|
93 |
+
'description' => sprintf(__( '<strong>Activation Error:</strong> Please update the Recurring Donations add-on to version <strong>1.9.4+</strong> in order to be compatible with GiveWP <strong>2.5.5+</strong>. If you are experiencing this issue please rollback GiveWP to 2.5.4 or below using the <a href="%s" target="_blank">WP Rollback</a> plugin and <a href="%s" target="_blank">contact support</a> for prompt assistance.', 'give' ), 'https://wordpress.org/plugins/wp-rollback/', 'https://givewp.com/support/'),
|
94 |
+
'show' => true,
|
95 |
+
)
|
96 |
+
);
|
97 |
+
});
|
98 |
+
|
99 |
+
// Deactivate recurring addon to avoid fatal error.
|
100 |
+
deactivate_plugins( $recurring_plugin_basename );
|
101 |
+
if ( isset( $_GET['activate'] ) ) {
|
102 |
+
unset( $_GET['activate'] );
|
103 |
+
}
|
104 |
+
}
|
105 |
+
|
106 |
return;
|
107 |
}
|
108 |
|
languages/give.pot
CHANGED
@@ -11514,15 +11514,19 @@ msgstr ""
|
|
11514 |
msgid "Save changes"
|
11515 |
msgstr ""
|
11516 |
|
11517 |
-
#: includes/gateways/stripe/class-give-stripe.php:
|
|
|
|
|
|
|
|
|
11518 |
msgid "Stripe - Credit Card"
|
11519 |
msgstr ""
|
11520 |
|
11521 |
-
#: includes/gateways/stripe/class-give-stripe.php:
|
11522 |
msgid "Credit Card"
|
11523 |
msgstr ""
|
11524 |
|
11525 |
-
#: includes/gateways/stripe/class-give-stripe.php:
|
11526 |
msgid "Stripe - Checkout"
|
11527 |
msgstr ""
|
11528 |
|
11514 |
msgid "Save changes"
|
11515 |
msgstr ""
|
11516 |
|
11517 |
+
#: includes/gateways/stripe/class-give-stripe.php:93
|
11518 |
+
msgid "<strong>Activation Error:</strong> Please update the Recurring Donations add-on to version <strong>1.9.4+</strong> in order to be compatible with GiveWP <strong>2.5.5+</strong>. If you are experiencing this issue please rollback GiveWP to 2.5.4 or below using the <a href=\"%s\" target=\"_blank\">WP Rollback</a> plugin and <a href=\"%s\" target=\"_blank\">contact support</a> for prompt assistance."
|
11519 |
+
msgstr ""
|
11520 |
+
|
11521 |
+
#: includes/gateways/stripe/class-give-stripe.php:183
|
11522 |
msgid "Stripe - Credit Card"
|
11523 |
msgstr ""
|
11524 |
|
11525 |
+
#: includes/gateways/stripe/class-give-stripe.php:184, includes/gateways/stripe/class-give-stripe.php:190
|
11526 |
msgid "Credit Card"
|
11527 |
msgstr ""
|
11528 |
|
11529 |
+
#: includes/gateways/stripe/class-give-stripe.php:189
|
11530 |
msgid "Stripe - Checkout"
|
11531 |
msgstr ""
|
11532 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: donation, donations, donation plugin, wordpress donation plugin, givewp, g
|
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.2
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 2.5.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -223,6 +223,10 @@ The 2% fee on Stripe donations only applies to donations taken via our free Stri
|
|
223 |
|
224 |
== Changelog ==
|
225 |
|
|
|
|
|
|
|
|
|
226 |
= 2.5.5: September 19th, 2019 =
|
227 |
* New: Added support for Stripe's new Checkout payment method. Now you can accept payments that support Strong Customer Authentication, Google and Apple Pay, Credit Cards and more! [#4207](https://github.com/impress-org/givewp/issues/4207)
|
228 |
* New: Added the ability to add tabs to settings to more easily break up sections. You can see this within the new Stripe payment gateway settings. [#4202](https://github.com/impress-org/givewp/issues/4202), [#4204](https://github.com/impress-org/givewp/issues/4204)
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.2
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 2.5.6
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
223 |
|
224 |
== Changelog ==
|
225 |
|
226 |
+
= 2.5.6: September 19th, 2019 =
|
227 |
+
* Notice: Please update the Recurring Donations add-on to version `1.9.4+` in order to use GiveWP 2.5.5+.
|
228 |
+
* Fix: Resolved a fatal error occuring if using an outdated version of the Recurring Donations add-on. The plugin will now display a message and deactivate the add-on to prevent the error. If you are experiencing this issue please rollback GiveWP to 2.5.4 or below using the [WP Rollback](https://wordpress.org/plugins/wp-rollback/) plugin and [contact support](https://givewp.com/support/) for prompt assistance. [#4255](https://github.com/impress-org/givewp/pull/4255)
|
229 |
+
|
230 |
= 2.5.5: September 19th, 2019 =
|
231 |
* New: Added support for Stripe's new Checkout payment method. Now you can accept payments that support Strong Customer Authentication, Google and Apple Pay, Credit Cards and more! [#4207](https://github.com/impress-org/givewp/issues/4207)
|
232 |
* New: Added the ability to add tabs to settings to more easily break up sections. You can see this within the new Stripe payment gateway settings. [#4202](https://github.com/impress-org/givewp/issues/4202), [#4204](https://github.com/impress-org/givewp/issues/4204)
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInitd2d64c4b9688e3bc920e70881738b09a::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit7a0f7cbcce8db800a4f111c6c431b9a0
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInitd2d64c4b9688e3bc920e70881738b09a
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitd2d64c4b9688e3bc920e70881738b09a', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitd2d64c4b9688e3bc920e70881738b09a', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInitd2d64c4b9688e3bc920e70881738b09a::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'S' =>
|
@@ -48,9 +48,9 @@ class ComposerStaticInit7a0f7cbcce8db800a4f111c6c431b9a0
|
|
48 |
public static function getInitializer(ClassLoader $loader)
|
49 |
{
|
50 |
return \Closure::bind(function () use ($loader) {
|
51 |
-
$loader->prefixLengthsPsr4 =
|
52 |
-
$loader->prefixDirsPsr4 =
|
53 |
-
$loader->classMap =
|
54 |
|
55 |
}, null, ClassLoader::class);
|
56 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInitd2d64c4b9688e3bc920e70881738b09a
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'S' =>
|
48 |
public static function getInitializer(ClassLoader $loader)
|
49 |
{
|
50 |
return \Closure::bind(function () use ($loader) {
|
51 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInitd2d64c4b9688e3bc920e70881738b09a::$prefixLengthsPsr4;
|
52 |
+
$loader->prefixDirsPsr4 = ComposerStaticInitd2d64c4b9688e3bc920e70881738b09a::$prefixDirsPsr4;
|
53 |
+
$loader->classMap = ComposerStaticInitd2d64c4b9688e3bc920e70881738b09a::$classMap;
|
54 |
|
55 |
}, null, ClassLoader::class);
|
56 |
}
|