Skip to content

Commit

Permalink
fix some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
omzn committed Sep 15, 2017
1 parent 3c2a5ff commit 7d94ef8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pman3.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# (c) 2002-2017 Osamu Mizuno, All right researved.
#
my $VERSION = "3.2.7 build 20170129";
my $VERSION = "3.2.8 build 20170915";
#
# =================================================================================
BEGIN {
Expand Down Expand Up @@ -4071,9 +4071,10 @@ sub createAList {
my $t = ($lang eq "en" && $$ent{'title_e'} ne "") ? $$ent{'title_e'} : $$ent{'title'};
&capitalizePaperTitle(\$t,$mode);


$t = ($tlink ne "" ? "<a href=\"".$tlink."D=$$ent{'id'}\">$t</a>" : $t);
$t = "<span class=\"l_title\">".$t."</span>";
if ($mode eq "list" || $mode eq "table") {
$t = ($tlink ne "" ? "<a href=\"".$tlink."D=$$ent{'id'}\">$t</a>" : $t);
$t = "<span class=\"l_title\">".$t."</span>";
}

################################[TIME]
$tt1 += Time::HiRes::tv_interval($tt0);
Expand Down

0 comments on commit 7d94ef8

Please sign in to comment.