Plugin Directory

Changeset 3145247


Ignore:
Timestamp:
09/02/2024 10:24:44 AM (19 months ago)
Author:
NicolasKulka
Message:

1.0.5.1

  • Fix Quantity problem with stock management
Location:
wpboutik
Files:
906 added
3 edited

Legend:

Unmodified
Added
Removed
  • wpboutik/trunk/classes/wpb-session-handler.php

    r3110603 r3145247  
    517517                    }
    518518                    if ((int) $value['quantity'] <= (int) $qty) {
    519                         $cart_content[$key]['quantity'] = $qty;
     519                        $cart_content[$key]['quantity'] = $value['quantity'];
    520520                    }
    521521                }
  • wpboutik/trunk/readme.txt

    r3124510 r3145247  
    55Tested up to: 6.5
    66Requires PHP: 7.0
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.5.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    181181== Changelog ==
    182182
     183= 1.0.5.1 =
     184* Fix Quantity problem with stock management
     185
    183186= 1.0.5 =
    184187* Add type subscription for products
  • wpboutik/trunk/wpboutik.php

    r3124510 r3145247  
    33Plugin Name: WPBoutik
    44Description: Il n’a jamais été aussi simple de vendre en ligne !
    5 Version: 1.0.5
     5Version: 1.0.5.1
    66Author: NicolasKulka, wpformation
    77Author URI: https://wpboutik.com/
     
    1919}
    2020// Plugin constants
    21 define( 'WPBOUTIK_VERSION', '1.0.5' );
     21define( 'WPBOUTIK_VERSION', '1.0.5.1' );
    2222define( 'WPBOUTIK_FOLDER', 'wpboutik' );
    2323define( 'WPBOUTIK_SLUG', 'wpboutik' );
Note: See TracChangeset for help on using the changeset viewer.