]> git.deb.at Git - pkg/blosxom.git/commitdiff
syntax error fix
authorKevin Scaldeferri <kscaldef@users.sourceforge.net>
Mon, 10 Jul 2006 22:24:47 +0000 (22:24 +0000)
committerKevin Scaldeferri <kscaldef@users.sourceforge.net>
Mon, 10 Jul 2006 22:24:47 +0000 (22:24 +0000)
blosxom.cgi

index 48ee5c1f7668cf7bd136522e887a29d9934f0a2f..2fd086149ff63fd7838de45be2f1c6a431901f4f 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";