Plugin Directory

Changeset 2199218


Ignore:
Timestamp:
11/22/2019 10:59:30 PM (6 years ago)
Author:
trof
Message:

version 1.5.0

Location:
simple-bitcoin-faucets/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • simple-bitcoin-faucets/trunk/bonds/bonds.php

    r2190920 r2199218  
    347347            return vars;
    348348        }
    349 /*     
     349   
    350350        var bondcode_$i = SBF_DB_get_url_vars_$i()['bond'];
    351351        var address_to_$i = SBF_DB_get_url_vars_$i()['to'];
    352352        jQuery('#SBF_DB_redeem_code_$i').val(bondcode_$i);
    353         jQuery('#SBF_DB_redeem_BTC_address_$i').val(address_to_$i);
    354 */
     353        if(address_to_$i != ''){
     354            jQuery('#SBF_DB_redeem_BTC_address_$i').val(address_to_$i);
     355        }
     356
    355357    </script>   
    356358    ";
  • simple-bitcoin-faucets/trunk/readme.txt

    r2194863 r2199218  
    44Requires at least: 2.0
    55Tested up to: 5.3
    6 Stable tag: 1.4.0
     6Stable tag: 1.5.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    168168
    169169== Changelog ==
     170= V1.5.0 - 22.11.2019 =
     171Several important fixes.<br>
     172
     173
    170174= V1.4.0 - 13.11.2019 =
    171175Satoshi Bonds front-end and back-end redesigned. Plenty of other improvements.<br>
  • simple-bitcoin-faucets/trunk/simple-bitcoin-faucets.php

    r2190920 r2199218  
    55 * Description: Satoshi Games, Faucets, Visitor Rewarder, Referral Program, and more...
    66 * Author: Alexey Trofimov
    7  * Version: 1.4.0 
     7 * Version: 1.5.0 
    88 * Author URI: http://gra4.com
    99 * Text Domain: simple-bitcoin-faucets
  • simple-bitcoin-faucets/trunk/videopoker/a_poker.php

    r1982921 r2199218  
    6565//$_SESSION["cm_balance"] = 100;
    6666    $msg = '';
    67     $bet = intval($_SESSION["cm_bet"]);
    68     if($bet < 1)
     67    $bet = 1;
     68    if(isset($_SESSION["cm_bet"])){
     69        $bet = intval($_SESSION["cm_bet"]);
     70    }
     71    if($bet <= 1) //to set $_SESSION["cm_bet"] if not set
    6972    {
    7073        $_SESSION["cm_bet"] = 1;
    7174    }
    72     $balance = intval($_SESSION["cm_balance"]);
     75    if(isset($_SESSION["cm_balance"])){
     76        $balance = intval($_SESSION["cm_balance"]);
     77    }else{
     78        $balance = 0;
     79    }
    7380    if(!isset($_SESSION["cm_bonuses_diven"]))
    7481    {
Note: See TracChangeset for help on using the changeset viewer.