Skip to content
Snippets Groups Projects
Commit cff11bdb authored by Romain Derie's avatar Romain Derie
Browse files

[FIX] website: prevent endless loop if homepage is unpublished..


.. and first menu is a container with # as url.

There is a particular case where the / url would loop endlessly.

1. Unpublished the homepage /
2. Edit the menu so the first menu is a container. There is a hint telling you
   a container menu should have its URL set to `#` as a good practice.
3. This will lead to endless loop for public user as the code will check if the
   homepage can be accessed. Since it is unpublished, it will then fallback on
   the first menu which is not '/' and redirect to it.
   Sadly, the code was not expecting `#` to be handled as `/`.

opw-2081969

closes odoo/odoo#38219

Signed-off-by: default avatarJérémy Kersten (jke) <jke@openerp.com>
parent da7d0c93
Branches
Tags
No related merge requests found
......@@ -76,7 +76,7 @@ class Website(Home):
else:
top_menu = request.website.menu_id
first_menu = top_menu and top_menu.child_id and top_menu.child_id.filtered(lambda menu: menu.is_visible)
if first_menu and first_menu[0].url not in ('/', '') and (not (first_menu[0].url.startswith(('/?', '/#', ' ')))):
if first_menu and first_menu[0].url not in ('/', '', '#') and (not (first_menu[0].url.startswith(('/?', '/#', ' ')))):
return request.redirect(first_menu[0].url)
raise request.not_found()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment