[FIX] ir_ui_view: remove undetermist order on search for views as the _order on the model is more specific (opw 607262)

This was problematic on some views where two views with the same priority could be chosen depending on the server, postgresql version and the age of the captain
This commit is contained in:
Martin Trigaux 2014-05-12 14:56:30 +02:00
parent 0f9917c9a3
commit fc7a31f842
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ class view(osv.osv):
['type', '=', view_type],
['inherit_id', '=', False],
]
ids = self.search(cr, uid, domain, limit=1, order='priority', context=context)
ids = self.search(cr, uid, domain, limit=1, context=context)
if not ids:
return False
return ids[0]