我不知道这个错误在哪里。我尝试在我的视图中进行了一些更改,但仍然存在错误。
以下是我的观点/ tmpl / view.html.php
jimport('joomla.application.component.view');
class CommentViewComment extends JViewLegacy{
function display($com = null)
{
// Assign data to the view
$this-> msg = 'Comment';
// Display the view
parent::display($com);
}
请帮助删除此错误
答案 0 :(得分:0)
我认为您必须将文件放在 views / Comment / view.html.php 和 views / Comment / tmpl / default.php
中