Update of /cvsroot/lxr/lxr/lib/LXR
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv30105/lib/LXR
Modified Files:
Common.pm
Log Message:
Call the ->isdir() method with $release.
Index: Common.pm
===================================================================
RCS file: /cvsroot/lxr/lxr/lib/LXR/Common.pm,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- Common.pm 4 Apr 2006 22:23:43 -0000 1.55
+++ Common.pm 20 Dec 2006 19:43:48 -0000 1.56
@@ -376,7 +376,7 @@
while ($node =~ s|/[^/]+/\.\./|/|g) { }
$node =~ s|/\.\./|/|g;
- $node .= '/' if $files->isdir($node);
+ $node .= '/' if $files->isdir($node, $release);
$node =~ s|//+|/|g;
return $node;
|