backdrop-contrib / commerce

GNU General Public License v2.0
3 stars 5 forks source link

Error in commerce_price_autoload_info #20

Closed herbdool closed 2 weeks ago

herbdool commented 2 weeks ago

There's a duplicate views/handler in the path. It should be:

function commerce_price_autoload_info() {
  return [
    'commerce_price_handler_field_commerce_price' => 'includes/views/handlers/commerce_price_handler_field_commerce_price.inc',
    'commerce_price_handler_filter_commerce_price_amount' => 'includes/views/handlers/commerce_price_handler_filter_commerce_price_amount.inc',
    'commerce_price.views' => 'includes/views/commerce_price.views.inc',
  ];
}
herbdool commented 2 weeks ago

@elisseck easy fix, has PR.

elisseck commented 2 weeks ago

Oops! Thank you!