Removed ple prefix to the user query in topmenu
[unfold.git] / ui / topmenu.py
index 6b152c8..69a8dd3 100644 (file)
@@ -69,7 +69,7 @@ from plugins.topmenuvalidation import TopmenuValidation
 # for asynchronous management of topmenu
 def topmenu_items_live (current, page):
     request=page.request
-    query_pi_auths = Query.get('ple:user').filter_by('user_hrn', '==', '$user_hrn' ).select('pi_authorities')
+    query_pi_auths = Query.get('user').filter_by('user_hrn', '==', '$user_hrn' ).select('pi_authorities')
     page.enqueue_query(query_pi_auths)
 #        # even though this plugin does not have any html materialization, the corresponding domid
 #        # must exist because it is searched at init-time to create the JS plugin
@@ -81,7 +81,7 @@ def topmenu_items_live (current, page):
         query=query_pi_auths,
         # this one is the target for a $.show() when the query comes back
         button_domid="topmenu-validation")
-        # although the result does not matter, rendering is required for the JS init code to make it in the page
+    # although the result does not matter, rendering is required for the JS init code to make it in the page
     topmenuvalidation.render(request)
 
     return topmenu_items_static (current, request)