The result browser is rendered from a javascript and inserted before the element with id="menu". But in bug 37222 the id changed to "biblio-view-menu", so the corresponding change needs to be made to the browser javascript. diff --git a/koha-tmpl/intranet-tmpl/prog/js/browser.js b/koha-tmpl/intranet-tmpl/prog/js/browser.js index 5a28fc8f198..a9cbf8ada97 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/browser.js +++ b/koha-tmpl/intranet-tmpl/prog/js/browser.js @@ -165,7 +165,7 @@ KOHA.browser = function (searchid, biblionumber) { __("Next") + '"><i class="fa fa-arrow-right"></i></a>'; } - $("#menu").before( + $("#biblio-view-menu").before( '<div class="browse-controls"><div class="browse-controls-inner"><div class="browse-label"><a href="' + searchURL + '" id="browse-return-to-results" class="searchwithcontext"><i class="fa fa-list"></i> ' +
*** This bug has been marked as a duplicate of bug 40854 ***