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

Fixed typo.

parent 427cbd91
No related merge requests found
......@@ -131,7 +131,9 @@ class User extends RowGateway
$select->join(
array('rt' => 'resource_tags'), 'tags.id = rt.tag_id', array()
);
$select->join(array('r' => 'resource'), 'rt.resource_id = r.id', array())
$select->join(
array('r' => 'resource'), 'rt.resource_id = r.id', array()
);
$select->join(
array('ur' => 'user_resource'), 'r.id = ur.resource_id', array()
);
......
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