When I use this module the titles for some of the admin pages are changed. In example - I have a "Category" vocabulary and when I go to the Taxonomy page my title is "Add Category".
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | wrong_page_titles-2848325-3.patch | 1.14 KB | boychev |
| #2 | wrong_page_titles-2848325-2.patch | 538 bytes | boychev |
Comments
Comment #2
boychev commentedHello!
Actually I faced the same problem and found a fix.
When we get link_path by router_path we make a condition by menu_link.options column. It is a blob column and we make LIKE %router_path% where clause. When we have a link for admin/structure/taxonomy/category/add it matches the page admin/structure/taxonomy
I made a patch to fix the where clause to search LIKE %"router_path"%
Comment #3
boychev commentedImproved patch.
We need db_like() in order to handle '%' mysql special symbol.
Comment #4
boychev commentedComment #5
danielangelov commentedThe issue is fixed
Comment #6
danielangelov commentedComment #7
danielangelov commentedComment #9
develcuy commentedMuch thanks @boychev and @danielangelov!