Hi Jason

This line
        response.menu += [(T('My Conferences'), False, 
URL('default','my_conferences'), [
            users_conferences_list
            ])]
I think should be
        response.menu += [(T('My Conferences'), False, 
URL('default','my_conferences'), 
            users_conferences_list
            )]

users_conferences is already a list, wrapping it in [] makes a one element 
list containing the users_conferences list which is not what menu expects.

Ron

Reply via email to