Plugin Directory

Changeset 2008896


Ignore:
Timestamp:
01/09/2019 06:53:39 AM (7 years ago)
Author:
mariaaspen
Message:

We have updated as per suggest wordpress.org.

Location:
wp-paytm-pay/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-paytm-pay/trunk/encdec_paytm.php

    r1974086 r2008896  
    129129function callAPI($apiURL, $requestParamList)
    130130{
    131     $jsonResponse      = "";
     131    /*$jsonResponse      = "";
    132132    $responseParamList = array();
    133133    $JsonData          = json_encode($requestParamList);
     
    145145    $jsonResponse      = curl_exec($ch);
    146146    $responseParamList = json_decode($jsonResponse, true);
     147    return $responseParamList;*/
     148    $jsonResponse      = "";
     149    $responseParamList = array();
     150    $JsonData          = json_encode($requestParamList);
     151    $apiURL = $apiURL.'?JsonData='.urlencode($JsonData);
     152    $response = wp_remote_get( $apiURL);
     153    $body = wp_remote_retrieve_body( $response );
     154    $responseParamList = json_decode($body, true);
    147155    return $responseParamList;
    148156}
  • wp-paytm-pay/trunk/readme.txt

    r1974086 r2008896  
    44Requires at least: 4.9
    55Tested up to: 4.9.8
    6 Stable tag: 1.2
     6Stable tag: 1.2.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4343Update Latest Paytm API.
    4444
     45= 1.2.1 =
     46We have updated as per suggest wordpress.org.
     47
    4548 
  • wp-paytm-pay/trunk/wp-paytm-pay.php

    r1974086 r2008896  
    22/*
    33Plugin Name: Wp Paytm Pay.
    4 Version: 1.2
     4Version: 1.2.1
    55Description: This plugin using visitors to donate via PayTM in either set or custom amounts
    66Author: FTI Technologies
Note: See TracChangeset for help on using the changeset viewer.