Plugin Directory

Changeset 2538893


Ignore:
Timestamp:
05/28/2021 06:13:58 AM (5 years ago)
Author:
brandonmuth
Message:

fixed minor bug

Location:
woo-download-credits
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • woo-download-credits/tags/1.3.6/readme.txt

    r2515703 r2538893  
    55Requires at least: 4.7
    66Tested up to: 5.7
    7 Stable tag: 1.3.5
     7Stable tag: 1.3.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4343
    4444== Changelog ==
     45
     46= 1.3.6 =
     47* "Minor Bug Fix"
    4548
    4649= 1.3.5 =
  • woo-download-credits/tags/1.3.6/woo-download-credits.php

    r2515703 r2538893  
    77 * Plugin Name: Woo Credits
    88 * Plugin URI: http://www.woocredits.com/
    9  * Version: 1.3.5
     9 * Version: 1.3.6
    1010 * Description: Lets your customers buy "credits" in bulk, then use those credits for downloadable/virtual products in your Woo Commerce shop.
    1111 * Author: http://www.woocredits.com/
     
    483483                $credit_number = wc_clean($options1['credit_number']);
    484484                $credit_number = $credit_number * $count;
    485                 $count = '  ' . $credit_number . ' credit ';
     485                //  $count = '  ' . $credit_number . ' credit ';
     486                $count = $credit_number;
    486487            }
    487488            return $count;
     
    11991200                        </div>
    12001201
    1201                         <?php // wdc_get_credit_product_id();        ?>
     1202                        <?php // wdc_get_credit_product_id();
     1203                        ?>
    12021204
    12031205                        <div id="postbox-container-1" class="postbox-container">
  • woo-download-credits/trunk/readme.txt

    r2515703 r2538893  
    55Requires at least: 4.7
    66Tested up to: 5.7
    7 Stable tag: 1.3.5
     7Stable tag: 1.3.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4343
    4444== Changelog ==
     45
     46= 1.3.6 =
     47* "Minor Bug Fix"
    4548
    4649= 1.3.5 =
  • woo-download-credits/trunk/woo-download-credits.php

    r2515703 r2538893  
    77 * Plugin Name: Woo Credits
    88 * Plugin URI: http://www.woocredits.com/
    9  * Version: 1.3.5
     9 * Version: 1.3.6
    1010 * Description: Lets your customers buy "credits" in bulk, then use those credits for downloadable/virtual products in your Woo Commerce shop.
    1111 * Author: http://www.woocredits.com/
     
    483483                $credit_number = wc_clean($options1['credit_number']);
    484484                $credit_number = $credit_number * $count;
    485                 $count = '&nbsp; ' . $credit_number . ' credit ';
     485                //  $count = '&nbsp; ' . $credit_number . ' credit ';
     486                $count = $credit_number;
    486487            }
    487488            return $count;
     
    11991200                        </div>
    12001201
    1201                         <?php // wdc_get_credit_product_id();        ?>
     1202                        <?php // wdc_get_credit_product_id();
     1203                        ?>
    12021204
    12031205                        <div id="postbox-container-1" class="postbox-container">
Note: See TracChangeset for help on using the changeset viewer.