Skip to content

Commit

Permalink
Merge pull request #293 from razorpay/1cc-blog-name
Browse files Browse the repository at this point in the history
Fixed blog name issue for 1cc
  • Loading branch information
ChetanGN authored Jun 7, 2022
2 parents 506e29b + b015df2 commit 0e4b2ae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: razorpay
Tags: razorpay, payments, india, woocommerce, ecommerce
Requires at least: 3.9.2
Tested up to: 5.9
Stable tag: 3.8.1
Stable tag: 3.8.2
Requires PHP: 5.6
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -41,6 +41,9 @@ This is compatible with WooCommerce>=2.4, including the new 3.0 release. It has

== Changelog ==

= 3.8.2 =
* Bug fix for blog name in magic checkout.

= 3.8.1 =
* Bug fix webhook
* Added meta info to magic checkout.
Expand Down
6 changes: 3 additions & 3 deletions woo-razorpay.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
* Plugin Name: Razorpay for WooCommerce
* Plugin URI: https://razorpay.com
* Description: Razorpay Payment Gateway Integration for WooCommerce
* Version: 3.8.1
* Stable tag: 3.8.1
* Version: 3.8.2
* Stable tag: 3.8.2
* Author: Team Razorpay
* WC tested up to: 6.4.1
* Author URI: https://razorpay.com
Expand Down Expand Up @@ -665,7 +665,7 @@ public function getDefaultCheckoutArguments($order)

return array(
'key' => $this->getSetting('key_id'),
'name' => get_bloginfo('name'),
'name' => html_entity_decode(get_bloginfo('name'), ENT_QUOTES),
'currency' => self::INR,
'description' => $productinfo,
'notes' => array(
Expand Down

0 comments on commit 0e4b2ae

Please sign in to comment.