Hello,
I am not sure if this is a big, but it is something I noticed in my generated code (so possibly it could be due to the configuration I had set up in the generator).
Anyway, I noticed that in the JModel.item.php class there is no function generated to add a where clause to the generated query (like there is in JModel.list.php). Of course this was easy to fix, by adding the following code to jmodel.item.php:
function addWhere($where_clause) {
$this->_where[] = $where_clause;
}
I needed this to be able to filter data in some of the views.
Kind regards,
Misha