Plugin Directory

Changeset 2598125


Ignore:
Timestamp:
09/13/2021 02:35:36 PM (5 years ago)
Author:
nellalink
Message:

1.1.18

  • Seurity upgrade on Crediting Rules
Location:
rimplenet/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • rimplenet/trunk/README.txt

    r2575966 r2598125  
    55Requires at least: 3.0.1
    66Tested up to: 5.8
    7 Stable tag: 1.1.16
     7Stable tag: 1.1.17
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    8181== Changelog ==
    8282
     83= 1.1.18 =
     84* Seurity upgrade on Crediting Rules
    8385= 1.1.17 =
    8486* Investment Packages Capital can now be refunded to users on Investment Contract Completion
     
    120122
    121123== Upgrade Notice ==
     124= 1.1.18 =
     125* Seurity upgrade on Crediting Rules
    122126= 1.1.17 =
    123127* Investment Packages Capital can now be refunded to users on Investment Contract Completion
  • rimplenet/trunk/includes/class-wallets.php

    r2503129 r2598125  
    3535 
    3636 public function RimplenetWalletHistory($atts) {
    37            
    38 
    39         ob_start();
    40 
    41         include plugin_dir_path( __FILE__ ) . 'layouts/wallet-transaction-history.php';
    42          
    43         $output = ob_get_clean();
    44 
    45         return $output;
    46      
     37           
     38
     39        ob_start();
     40
     41        include plugin_dir_path( __FILE__ ) . 'layouts/wallet-transaction-history.php';
     42         
     43        $output = ob_get_clean();
     44
     45        return $output;
     46     
    4747 }
    4848 
     
    5959     $wallet_id  = trim($args[1]);
    6060     $funds_info  = trim($args[2]);
     61     //$tag_ref = trim($args[3]);
     62     $tag_ref = $obj_id;
    6163     if(empty($funds_info)){
    6264         $funds_info = "Txn Returns - ".$obj_id;
     
    6769     }
    6870     elseif(strpos($rule, "rimplenet_rules_add_to_mature_wallet") !== false AND is_numeric($amount)){
    69        
    70         $this->add_user_mature_funds_to_wallet($user->ID,$amount, $wallet_id, $funds_info);
     71        $tags['txn_ref'] = $tag_ref;
     72        $this->add_user_mature_funds_to_wallet($user->ID,$amount, $wallet_id, $funds_info, $tags);
    7173       $status = rimplenetRulesExecuted($rule,$user,$obj_id,$args);
    7274     }
     
    842844 function rimplenet_txn_exist($user_id,$external_txn_id){
    843845       
    844                    $txn_loop = new WP_Query(
     846                   $txn_loop = new WP_Query(
    845847                             array( 
    846848                               'post_type' => 'rimplenettransaction',
  • rimplenet/trunk/rimplenet.php

    r2575966 r2598125  
    1717 * Plugin URI:        https://rimplenet.com
    1818 * Description:       Rimplenet FinTech | E-Banking | E-Wallets  | Investments Plugin | MLM | Matrix Tree | Referral Manager
    19  * Version:           1.1.17
     19 * Version:           1.1.18
    2020 * Author:            Nellalink
    2121 * Author URI:        https://rimplenet.com
     
    3535 * Using SemVer - https://semver.org
    3636 */
    37 define( 'RIMPLENET_VERSION', '1.1.17' );
     37define( 'RIMPLENET_VERSION', '1.1.18' );
    3838
    3939/**
Note: See TracChangeset for help on using the changeset viewer.