Skip to content
Snippets Groups Projects
Commit 1ce78537 authored by Demian Katz's avatar Demian Katz
Browse files

Less ambiguous field list (for PostgreSQL compatibility).

Thanks to Michele Meloni.
parent fc60d570
No related merge requests found
......@@ -331,7 +331,10 @@ class User extends ServiceLocatorAwareGateway
);
$select->where->equalTo('user_list.user_id', $userId);
$select->group(
array('id', 'user_id', 'title', 'description', 'created', 'public')
array(
'user_list.id', 'user_list.user_id', 'title', 'description',
'created', 'public'
)
);
$select->order(array('title'));
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment