Adding to cart on PHP7 throws notice error

Notice: Only variables should be passed by reference in commerce_cart_product_add() (line 1344 of /home/icam/public_html/sites/all/modules/commerce/modules/cart/commerce_cart.module).
when trying to add 2 items to the cart it shows the above warnings.

Now add
$tmp_line_item = clone($line_item);
drupal_alter(‘commerce_cart_product_comparison_properties’, $comparison_properties,
$tmp_line_item);

to line 1344 by commenting the line
(public_html/sites/all/modules/commerce/modules/cart/commerce_cart.module )

drupal_alter(‘commerce_cart_product_comparison_properties’, $comparison_properties,
clone($line_item));

Leave a comment