@@ -, +, @@ content (001) authid value, e.g.: http://ktd:8081/cgi-bin/koha/authorities/detail.pl?authid= 100 Modify the heading field -- in the ktd data set: 150 Computerized typesetting Save the record. the authid in field 001. Close the editor (with Cancel). b) Try to go to the linked biblio records with Used in X records. Note no results, if using ES. c) Remove the space before authid (after an:) in the URL. Go to the linked biblio records. See that the content of the field controlled by the modified auth record did not update. be OK now. --- authorities/authorities.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/authorities/authorities.pl +++ a/authorities/authorities.pl @@ -537,7 +537,8 @@ sub build_hidden_data { my $input = CGI->new; my $z3950 = $input->param('z3950'); my $error = $input->param('error'); -my $authid=$input->param('authid'); # if authid exists, it's a modif, not a new authority. +my $authid = $input->param('authid') =~ s/\D//gr + ; # if authid exists, it's a modif, not a new authority. We remove from authid all non-digit characters just in case the CGI parameter contains a weird characters like space my $op = $input->param('op'); my $nonav = $input->param('nonav'); my $myindex = $input->param('index'); --