# HG changeset patch # User Sylvain Thénault # Date 1253104232 -7200 # Node ID 54e07f97c17fc5e1c82d215ac5294caba39ff014 # Parent 390acf7594edb54038926f75f1acabc9cae6ec97 unrelated_rql now return rql *and* args diff -r 390acf7594ed -r 54e07f97c17f web/views/editviews.py --- a/web/views/editviews.py Wed Sep 16 14:29:29 2009 +0200 +++ b/web/views/editviews.py Wed Sep 16 14:30:32 2009 +0200 @@ -50,10 +50,10 @@ # them. Use fetch_order and not fetch_unrelated_order as sort method # since the latter is mainly there to select relevant items in the combo # box, it doesn't give interesting result in this context - rql = entity.unrelated_rql(rtype, etype, role, + rql, args = entity.unrelated_rql(rtype, etype, role, ordermethod='fetch_order', vocabconstraints=False) - rset = self.req.execute(rql, {'x' : entity.eid}, 'x') + rset = self.req.execute(rql, args, tuple(args)) return rset, 'list', "search-associate-content", True