Skip to content

Commit

Permalink
fix a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
omzn committed Jan 28, 2017
1 parent 44b7d15 commit dd2c5c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pman3.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -4318,13 +4318,13 @@ sub createAList {
$lquot = $rquot = """ if ($mode eq "list" || $mode eq 'detail');

if ($$ent{'style'} eq "article") {
$aline .= "$lquot$t,$rquot $jj, $vvnn $pp $yymm.";
$aline .= "$lquot$t,$rquot $jj, $vvnn $pp, $yymm.";
# $aline .= "\{$t\}\{$jj, $vvnn $pp\}\{$yy\}\{ほげほげ\}";
if ($check{'jcr'} && $$ent{'impactfactor'} ne "") {
$aline .= " (JCR: $$ent{'impactfactor'})";
}
} elsif ($$ent{'style'} eq "inproceedings") {
$aline .= "$lquot$t,$rquot $edr $bkt $vvnn $pp $yymm.";
$aline .= "$lquot$t,$rquot $edr $bkt $vvnn $pp, $yymm.";
# $aline .= "\{$t\}\{$edr $bkt $vvnn $pp\}\{$yy\}\{ほげほげ\}";
if ($$ent{'note'} ne "" && $check{'note'}) {
$aline .= " ($$ent{'note'})";
Expand All @@ -4333,7 +4333,7 @@ sub createAList {
$aline .= " (Acceptance rate: $$ent{'acceptance'})";
}
} elsif ($$ent{'style'} eq "incollection") {
$aline .= "$t, $edr $bkt $chp $pp $pub $yy.";
$aline .= "$t, $edr $bkt $chp $pp $pub, $yy.";
} elsif ($$ent{'style'} =~ /(in)?book|manual/) {
$aline .= "$t, $pub $yy.";
} elsif ($$ent{'style'} eq "phdthesis") {
Expand Down

0 comments on commit dd2c5c7

Please sign in to comment.