diff --git a/classes/helper/HelperList.php b/classes/helper/HelperList.php index 2d7ff0cda..d95e94399 100644 --- a/classes/helper/HelperList.php +++ b/classes/helper/HelperList.php @@ -210,6 +210,8 @@ class HelperListCore extends Helper if (method_exists($this->context->controller, $method_name)) $this->_list[$index][$action] = $this->context->controller->$method_name($this->token, $id, $name); + else if ($this->module instanceof Module && method_exists($this->module, $method_name)) + $this->_list[$index][$action] = $this->module->$method_name($this->token, $id, $name); elseif (method_exists($this, $method_name)) $this->_list[$index][$action] = $this->$method_name($this->token, $id, $name); }