@@ -, +, @@ - enter the advanced cataloging editor - begin to input any MARC tag of form 09X - click the help link at the bottom of the browser window tag + '.html'` which is broken because the only documentation for these tags is at https://www.loc.gov/marc/bibliographic/bd09x.html --- koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc | 2 ++ 1 file changed, 2 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc @@ -163,6 +163,8 @@ require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr [% IF ( marcflavour == 'MARC21' ) %] if ( tag == '000' ) { return "http://www.loc.gov/marc/bibliographic/bdleader.html"; + } else if ( tag >= '090' && tag < '100' ) { + return "http://www.loc.gov/marc/bibliographic/bd09x.html"; } else if ( tag < '900' ) { return "http://www.loc.gov/marc/bibliographic/bd" + tag + ".html"; } else { --