Skip to content

Commit

Permalink
Apparently this shouldn't be encoded...
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jan 25, 2007
1 parent 4ece806 commit c4bd46f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion IcculusNews_daemon.pl
Expand Up @@ -518,7 +518,8 @@ sub generate_rdf {
while (my @row = $sth->fetchrow_array()) {
my $authorid = $row[0];
my $itemid = $row[1];
my $itemtitle = encode_entities($row[2]);
# my $itemtitle = encode_entities($row[2]);
my $itemtitle = $row[2];
my $itempostdate = encode_entities($row[3]);
my $authorname = encode_entities(((not defined $row[4]) ? $anon : $row[4]));
my $ipaddr = long2ip($row[5]);
Expand Down

0 comments on commit c4bd46f

Please sign in to comment.