http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7839
Frédéric Demians <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |In Discussion CC| |[email protected] --- Comment #19 from Frédéric Demians <[email protected]> --- It doesn't work. You SQL statement has a typo. You have: JOIN subscriptionroutinglist ON USING(subscriptionid) You need: JOIN subscriptionroutinglist USING(subscriptionid) After this fix, the new Routing Lists tab displays properly patron routing lists. It's great. When Routing Lists tab is selected, under the Edit-Change password buttons bar, there is a search form. When running such a search on subcription, the search result is displayed in a new browser tab. The search form has a target="_blank" attribute. This is not something which is done elsewhere in Koha, and it's generally considered has a 'bad practice'. It means that you have to close the new browser tab in order to come back to the patron page, and then refresh by yourself the page, if you want to see what you've done in serial module. Same issue with the Edit Routing List link which open a new browser tab. For me, this point is a matter of discussion. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
