Skip to content

Commit

Permalink
Be consistent with authenticated version
Browse files Browse the repository at this point in the history
  • Loading branch information
jcameron committed Mar 14, 2020
1 parent 6559161 commit 7862d7b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion unauthenticated/icons.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,8 @@ print "Content-length: ",$st[7],"\n";
print "Last-Modified: ",&http_date($st[9]),"\n";
print "Expires: ",&http_date(time()+7*24*60*60),"\n";
print "\n";
print &read_file_contents("$icons_dir/$icon");
open(my $ICON, "<", "$icons_dir/$icon");
while(<$ICON>) {
print $_;
}
close($ICON);

0 comments on commit 7862d7b

Please sign in to comment.