Property WB_Roles.user_id is not defined
This makes me think that it doesn't extract from joined tables. I tried even with placing full table names in front of rows instead of shortcuts such as ur or r.
$roles = WB_Roles::model ()->findAllBySql ( 'SELECT r.id, r.name, ur.user_id FROM wb_roles r LEFT JOIN wb_user_roles ur ON (ur.role_id = r.id AND ur.user_id = :user_id) WHERE r.id != :guest_id', array ( ':guest_id' => WB_Roles::WB_GUEST_ROLE, ':user_id' => $_GET [ 'id' ] ) );
It's probably because I use WB_Roles::model () to query the database but what should I use for custom queries like this.

Help













