Changeset 2598125
- Timestamp:
- 09/13/2021 02:35:36 PM (5 years ago)
- Location:
- rimplenet/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (3 diffs)
-
includes/class-wallets.php (modified) (4 diffs)
-
rimplenet.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rimplenet/trunk/README.txt
r2575966 r2598125 5 5 Requires at least: 3.0.1 6 6 Tested up to: 5.8 7 Stable tag: 1.1.1 67 Stable tag: 1.1.17 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 81 81 == Changelog == 82 82 83 = 1.1.18 = 84 * Seurity upgrade on Crediting Rules 83 85 = 1.1.17 = 84 86 * Investment Packages Capital can now be refunded to users on Investment Contract Completion … … 120 122 121 123 == Upgrade Notice == 124 = 1.1.18 = 125 * Seurity upgrade on Crediting Rules 122 126 = 1.1.17 = 123 127 * Investment Packages Capital can now be refunded to users on Investment Contract Completion -
rimplenet/trunk/includes/class-wallets.php
r2503129 r2598125 35 35 36 36 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 47 47 } 48 48 … … 59 59 $wallet_id = trim($args[1]); 60 60 $funds_info = trim($args[2]); 61 //$tag_ref = trim($args[3]); 62 $tag_ref = $obj_id; 61 63 if(empty($funds_info)){ 62 64 $funds_info = "Txn Returns - ".$obj_id; … … 67 69 } 68 70 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); 71 73 $status = rimplenetRulesExecuted($rule,$user,$obj_id,$args); 72 74 } … … 842 844 function rimplenet_txn_exist($user_id,$external_txn_id){ 843 845 844 $txn_loop = new WP_Query(846 $txn_loop = new WP_Query( 845 847 array( 846 848 'post_type' => 'rimplenettransaction', -
rimplenet/trunk/rimplenet.php
r2575966 r2598125 17 17 * Plugin URI: https://rimplenet.com 18 18 * Description: Rimplenet FinTech | E-Banking | E-Wallets | Investments Plugin | MLM | Matrix Tree | Referral Manager 19 * Version: 1.1.1 719 * Version: 1.1.18 20 20 * Author: Nellalink 21 21 * Author URI: https://rimplenet.com … … 35 35 * Using SemVer - https://semver.org 36 36 */ 37 define( 'RIMPLENET_VERSION', '1.1.1 7' );37 define( 'RIMPLENET_VERSION', '1.1.18' ); 38 38 39 39 /**
Note: See TracChangeset
for help on using the changeset viewer.