ossp-web/SHARE/ossp_pkg.wml 1.8 -> 1.9
--- ossp_pkg.wml 2002/10/02 12:48:45 1.8
+++ ossp_pkg.wml 2002/11/01 08:59:13 1.9
@@ -88,8 +88,8 @@
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
$ncol = ($ncol + 1) % 2;
my $type = "N";
- $type = "S" if ($f eq $stable);
- $type = "U" if ($f eq $unstable);
+ $type = "S" if ($f =~ m|$stable|);
+ $type = "U" if ($f =~ m|$unstable|);
my $class = "files${ncol}${type}";
$f = "<a href=\"".$url."/".$f."\" class=$class>$f</a>";
my $e = "<tr class=$class>" .
|
|