Warning in error log


  • Default avatar
    mat411    
     14 days ago  last edited 14 days ago
    0

    I am geting constant php warningPHP Warning: Undefined variable $customer_num_uses in public_html/administrator/components/com_awocoupon/awocoupon/library/class-awocoupon-library-discount.php on line 5597


    Using php 8.2, Joomla 4 and Hikashop 5

  • Your avatar
    seyi    
     8 days ago
    0

    Hello,

    It will be fixed on next update.  It does not really affect anything, but if you want to get rid of it, you can update the file:

    public_html/administrator/components/com_awocoupon/awocoupon/library/class-awocoupon-library-discount.php

    Around line 5571 is this
              $user_id = $coupon_row->customer->user_id;
    Right after that line add this:
              $customer_num_uses = 0;

    That should get rid of the warning.