]> git.deb.at Git - pkg/blosxom.git/blobdiff - blosxom.cgi
revert change 1.13 entirely due to incorrect behavior
[pkg/blosxom.git] / blosxom.cgi
index 48ee5c1f7668cf7bd136522e887a29d9934f0a2f..48a79b57bd32ab341a9bfb3b9a5a35faa909903a 100755 (executable)
@@ -183,7 +183,7 @@ sub load_template {
   return &$template(@_);
 }
 
-# Define default entries subroutine
+# Define default find subroutine
 $entries =
   sub {
     my(%files, %indexes, %others);
@@ -363,7 +363,7 @@ sub generate {
       ($path,$fn) = $path_file =~ m!^$datadir/(?:(.*)/)?(.*)\.$file_extension!;
   
       # Only stories in the right hierarchy
-      $path =~ /^$currentdir(?=$|/)/ or $path_file eq "$datadir/$currentdir" or next;
+      $path =~ /^$currentdir/ or $path_file eq "$datadir/$currentdir" or next;
   
       # Prepend a slash for use in templates only if a path exists
       $path &&= "/$path";