Description
When enabling multiple languages in Open edX with the Indigo theme, the language switch dropdown generates an incorrect URL. The issue is caused by the following line in the header.html
file:
File: tutorindigo/templates/indigo/lms/templates/header/header.html
value="${reverse('session_language')}"
Issue:
- The
session_language
URL is incorrect.
Fix:
- It should be replaced with
update_language
to work correctly:
value="${reverse('update_language')}"
Would appreciate a fix in an upcoming update!