Only offer yearly overview graphs for years for which graphs exist
authorJoey Schulze <joey@infodrom.org>
Wed, 9 Jul 2008 09:21:38 +0000 (09:21 +0000)
committerJoey Schulze <joey@infodrom.org>
Wed, 9 Jul 2008 09:21:38 +0000 (09:21 +0000)
src/Infodrom/webstats/submenu.inc

index 4681816..e9fd850 100644 (file)
@@ -22,6 +22,8 @@
 <?
   if (!empty($site)) {
     for ($anno = $minyear; $anno <= $maxyear; $anno++) {
+      $graphs = glob(sprintf('%s/access-%04d-*.png', $site, $anno));
+      if (count($graphs))
        printf ('&nbsp;<a href="view.php?type=%s&site=%s&year=%04d">%04d</a><br>',
          $type, urlencode($site), $anno, $anno);
     }