diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-08-03 22:52:58 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-03 22:52:58 +0000 |
commit | 852333402d6287f21b287887e0503a3743974460 (patch) | |
tree | 0280086b706a6d62e96edfc5476d5995c8e25642 /www/dailymod.pl | |
parent | 24ecdfe51780b4478cfd08132c95d47985d7971c (diff) |
make sure the extracted number starts with 20, as otherwise it isn't a date
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3914 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'www/dailymod.pl')
-rwxr-xr-x | www/dailymod.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/dailymod.pl b/www/dailymod.pl index 4ddcf7e55b..8e503ee30d 100755 --- a/www/dailymod.pl +++ b/www/dailymod.pl @@ -12,7 +12,7 @@ for(@list) { closedir DIR; for(@files) { - /(\d+)/; + /(20\d+)/; $date{$1}=$1; } } |