Plugin Directory

Changeset 1366751


Ignore:
Timestamp:
03/08/2016 01:38:30 PM (10 years ago)
Author:
owencutajar
Message:

Bug fix (starting price)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wp-auctions/trunk/wp_auctions.php

    r1359639 r1366751  
    44Plugin URI: http://www.wpauctions.com/download/
    55Description: Implements the ability to run auctions on your own blog. Once activated, add the widget to your sidebar or add <code>&lt;?php wp_auctions(); ?&gt;</code> to your sidebar.
    6 Version: 3.6.2
     6Version: 3.6.3
    77Author: Owen Cutajar & Hyder Jaffari
    88Author URI: http://www.wpauctions.com/download/
     
    1212  v0.1 Beta  - OwenC - 29/01/08 - Initial beta release
    1313  v1.0 Free  - OwenC - 21/02/08 - Free public release 
    14   v3.0 Free  - OwenC - 14/10/14 - Refreshed with premium features - Added Bid Increment - Added TinyMCE and WP Media
    15   v3.1 Free  - OwenC - 27/10/14 - Refreshed with premium features - Registered users only options
    16   v3.2 Free  - OwenC -  9/11/14 - Refreshed with premium features - List Format
    17   v3.3 Free  - OwenC -  6/1/15 - Refreshed with premium features - Custom Contact Field
    18   v3.4 Free  - OwenC - 22/1/15 - Refreshed with premium features - Added Shipping
    19   v3.5 Free  - OwenC - 30/03/15 - Added extra image
     14  v3.0 Free  - OwenC - 14/10/14 - Refreshed with premium features
    2015  v3.5.1 Free - HyderJ - 07/05/2015 - Fixed CSS issues
    2116  v3.6 Free  - OwenC - 1/6/2015 - Refreshed with premium features - Embeded auctions
    2217            - OwenC - 15/6/2015 - Rectified a number of warnings - Traced down old bug where notifications not always sent
    23   v3.6.1 - HyderJ - 08/03/2015 - Fixed a languages/ issue and updated some CSS. Improved general usability.
    24   v3.6.2 - OwenC - 27/2/2016 - Bug fixes (email validation)
     18  v3.6.3 - OwenC - 08/03/2016 - Bug Fixes
    2519*/
    2620
     
    3125    require_once('../../../wp-config.php');
    3226 
    33 $wpa_version = "3.6.2";
     27$wpa_version = "3.6.3";
    3428
    3529// Consts
     
    10101004   
    10111005   // work out next min bid
    1012    $nextbid = $currencysymbol . number_format($current_price + wpa_get_increment($current_price), 2, '.', ',');
     1006   if ($start_price > $current_price) {
     1007       $nextbid = $start_price;
     1008   } else {
     1009       $nextbid = $currencysymbol . number_format($current_price + wpa_get_increment($current_price), 2, '.', ',');
     1010   }
    10131011
    10141012    // get bids
Note: See TracChangeset for help on using the changeset viewer.