Version Description
- Bug fix for blog name in magic checkout.
Download this release
Release Info
Developer | razorpay |
Plugin | Razorpay for WooCommerce |
Version | 3.8.2 |
Comparing to | |
See all releases |
Code changes from version 3.8.1 to 3.8.2
- readme.txt +4 -1
- woo-razorpay.php +3 -3
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: razorpay
|
|
3 |
Tags: razorpay, payments, india, woocommerce, ecommerce
|
4 |
Requires at least: 3.9.2
|
5 |
Tested up to: 5.9
|
6 |
-
Stable tag: 3.8.
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -41,6 +41,9 @@ This is compatible with WooCommerce>=2.4, including the new 3.0 release. It has
|
|
41 |
|
42 |
== Changelog ==
|
43 |
|
|
|
|
|
|
|
44 |
= 3.8.1 =
|
45 |
* Bug fix webhook
|
46 |
* Added meta info to magic checkout.
|
3 |
Tags: razorpay, payments, india, woocommerce, ecommerce
|
4 |
Requires at least: 3.9.2
|
5 |
Tested up to: 5.9
|
6 |
+
Stable tag: 3.8.2
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
41 |
|
42 |
== Changelog ==
|
43 |
|
44 |
+
= 3.8.2 =
|
45 |
+
* Bug fix for blog name in magic checkout.
|
46 |
+
|
47 |
= 3.8.1 =
|
48 |
* Bug fix webhook
|
49 |
* Added meta info to magic checkout.
|
woo-razorpay.php
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
* Plugin Name: Razorpay for WooCommerce
|
4 |
* Plugin URI: https://razorpay.com
|
5 |
* Description: Razorpay Payment Gateway Integration for WooCommerce
|
6 |
-
* Version: 3.8.
|
7 |
-
* Stable tag: 3.8.
|
8 |
* Author: Team Razorpay
|
9 |
* WC tested up to: 6.4.1
|
10 |
* Author URI: https://razorpay.com
|
@@ -665,7 +665,7 @@ function woocommerce_razorpay_init()
|
|
665 |
|
666 |
return array(
|
667 |
'key' => $this->getSetting('key_id'),
|
668 |
-
'name' => get_bloginfo('name'),
|
669 |
'currency' => self::INR,
|
670 |
'description' => $productinfo,
|
671 |
'notes' => array(
|
3 |
* Plugin Name: Razorpay for WooCommerce
|
4 |
* Plugin URI: https://razorpay.com
|
5 |
* Description: Razorpay Payment Gateway Integration for WooCommerce
|
6 |
+
* Version: 3.8.2
|
7 |
+
* Stable tag: 3.8.2
|
8 |
* Author: Team Razorpay
|
9 |
* WC tested up to: 6.4.1
|
10 |
* Author URI: https://razorpay.com
|
665 |
|
666 |
return array(
|
667 |
'key' => $this->getSetting('key_id'),
|
668 |
+
'name' => html_entity_decode(get_bloginfo('name'), ENT_QUOTES),
|
669 |
'currency' => self::INR,
|
670 |
'description' => $productinfo,
|
671 |
'notes' => array(
|