From 2feeb123ce0aed55a6e12ca4dc9a32a060319fc1 Mon Sep 17 00:00:00 2001 From: rangi Date: Sat, 26 Jun 2004 23:43:12 +0000 Subject: [PATCH] Accepts subjects separated by | or \n --- updatebiblio.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updatebiblio.pl b/updatebiblio.pl index 306451585e..c8a607d0bd 100755 --- a/updatebiblio.pl +++ b/updatebiblio.pl @@ -58,7 +58,7 @@ my $error; &modaddauthor($bibnum, $addauthor); $subject = uc($subject); -@sub = split(/\|/, $subject); +@sub = split(/\||\n/, $subject); $count = @sub; for (my $i = 0; $i < $count; $i++) { -- 2.20.1