commit 3cb1a96882109028e4821b6ad2ed4b420faeebeb
parent e3e0136e303bdeaf3b298c6f2654657ae65f401e
Author: cipher <haris@2f30.org>
Date: Wed, 26 Mar 2014 14:21:16 +0200
Fix page linking
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/bliper-blog.pl b/bin/bliper-blog.pl
@@ -22,7 +22,7 @@ if ($count gt 0) {
@files = reverse @files;
foreach my $file (@files) {
open (OUT, '>>', "../pages/blog") or die "Could not open blog file $!\n";
- print OUT "[$file]($file)<br>";
+ print OUT "[$file]($file.html)<br>";
}
close OUT;
chdir($maindir) or die "Can't change dir to $maindir $!\n";