Skip to content

Commit

Permalink
7.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptibogxiv committed Aug 20, 2023
1 parent 0c720ee commit fd894b4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doliconnect.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Doliconnect
* Plugin URI: https://www.ptibogxiv.eu
* Description: Connect your Dolibarr (free ERP/CRM) to Wordpress.
* Version: 7.6.7
* Version: 7.7.0
* Author: ptibogxiv
* Author URI: https://www.ptibogxiv.eu
* Network: true
Expand Down Expand Up @@ -41,7 +41,7 @@ function doliconnect_textdomain() {
//include_once( ABSPATH . 'wp-admin/includes/plugin.php' );

define('DOLIBARR_MINIMUM_VERSION', '13.0.5');
define('DOLIBARR_LEGAL_VERSION', '17.0.3');
define('DOLIBARR_LEGAL_VERSION', '18.0.0');

// ********************************************************
function doliconnecturl($page) {
Expand Down
2 changes: 1 addition & 1 deletion functions/product.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function doliProductStock($product, $refresh = false, $nohtml = false, $array_op
if ( isset($order->lines) && $order->lines != null ) {
foreach ($order->lines as $line) {
if (is_object($array_options)) $line_array_options = (object) $line->array_options;
if ($line->fk_product == $product->id && $line_array_options == $array_options) {
if ($line->fk_product == $product->id && $line->array_options == $array_options) {
//$button = var_dump($line);
$mstock['qty'] = $line->qty;
$mstock['line'] = $line->id;
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributors: ptibogxiv, audrasjb
Tags: erp, crm, ecommerce, dolibarr, payment, interface, customer, subscription, membership, doliconnect, dashboard, paypal, stripe, doliconnect, invoice, order, donation, GDPR, RGPD, LGPD, CCPA
Requires at least: 5.0
Tested up to: 6.4
Stable tag: 7.6.7
Stable tag: 7.7.0
Requires PHP: 7.4
License: GPL v3 or later
Donate link: https://www.paypal.me/ptibogxiv
Expand Down

0 comments on commit fd894b4

Please sign in to comment.