Tuesday, January 6, 2026
2 changes · master
Features or functions removed from Odoo
This update removes the 'Referred By' field from the Applicant search view within the HR Referral module. This simplifies the search experience for recruiters and improves data clarity by focusing on relevant applicant information. The change was implemented to streamline the applicant search process.
Original PR description
This commit is an extension of odoo/odoo@718c85eb3a48ed2b2301156c619878ec6e63d240 Task-5184168
This update removes redundant string escaping functionality within Odoo's codebase. The system's markup template engine now automatically handles escaping, eliminating the need for manual escaping steps. Using `htmlEscape` is now recommended for manual escaping to prevent issues with double escaping in templates.
Original PR description
All occurrences have been removed. markup template automatically escapes its params, so there should be no need to manually escape strings before passing them to a template. If escaping manually is necessary, `htmlEscape` should be used instead, as it wraps its result into markup which prevents double escaping when used in templates and other HTML utility functions.