summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xwww/dailymod.pl5
1 files changed, 4 insertions, 1 deletions
diff --git a/www/dailymod.pl b/www/dailymod.pl
index 7eca82a788..e823af1028 100755
--- a/www/dailymod.pl
+++ b/www/dailymod.pl
@@ -17,11 +17,14 @@ sub list {
17 print "</ul>\n"; 17 print "</ul>\n";
18} 18}
19 19
20print "<table class=rockbox><tr><th>player</th><th>recorder</th></tr>\n"; 20print "<table class=rockbox><tr><th>player</th><th>recorder</th><th>fmrecorder</th></tr>\n";
21print "<tr><td>\n"; 21print "<tr><td>\n";
22&list("player"); 22&list("player");
23 23
24print "</td><td>\n"; 24print "</td><td>\n";
25&list("recorder"); 25&list("recorder");
26 26
27print "</td><td><p><b>Note:</b> The FM Recorder version is still very early and buggy. It is available here for testing purposes only.\n";
28&list("fmrecorder");
29
27print "</td></tr></table>\n"; 30print "</td></tr></table>\n";