Jump to content

Small bug in productcomments module v4.0.1


Recommended Posts

Found small bug in productcomments module v4.0.1, when visit main page of the shop. See attempt of ajax call to controller of the module. Attempts appears randomly.

productcomments/CommentGrade?id_product=id

500 (Internal Server Error)

 

 

llllll.jpg

Link to comment
Share on other sites

I found the solution to add this code to the modules\productcomments\controllers\front\CommentGrade.php

    public function initContent(){
        if ($this->context->controller->php_self != 'product') {
            return;
        }
        parent::initContent();
    }

It works.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...