summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xwww/dailysrc.pl5
1 files changed, 4 insertions, 1 deletions
diff --git a/www/dailysrc.pl b/www/dailysrc.pl
index 27ef1994ed..71f49c8423 100755
--- a/www/dailysrc.pl
+++ b/www/dailysrc.pl
@@ -14,7 +14,10 @@ for ( @tarballs ) {
14 $log = ""; 14 $log = "";
15 if (/-(\d+)/) { 15 if (/-(\d+)/) {
16 $date = $1; 16 $date = $1;
17 if ( -f "$basedir/changes-$date.log") { 17 if ( -f "$basedir/changes-$date.txt") {
18 $log = "<a href=\"daily/changes-$date.txt\">Changelog</a>";
19 }
20 elsif ( -f "$basedir/changes-$date.log") {
18 $log = "<a href=\"daily/changes-$date.log\">Changelog</a>"; 21 $log = "<a href=\"daily/changes-$date.log\">Changelog</a>";
19 } 22 }
20 } 23 }