Skip to content

Commit

Permalink
Fix section URI bug
Browse files Browse the repository at this point in the history
  • Loading branch information
pudge committed May 15, 2002
1 parent 00d27b1 commit 1d4c177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Slash/Apache/Apache.pm
Expand Up @@ -318,7 +318,7 @@ sub IndexHandler {
if ($uri =~ m|^/(\w+)/$|) {
my $key = $1;
my $slashdb = getCurrentDB();
my $section = $slashdb->getSection($key);
my $section = $slashdb->getSection($key, 'id');
if ($section) {
my $basedir = $constants->{basedir};
my $index_handler = $section->{index_handler}
Expand Down

0 comments on commit 1d4c177

Please sign in to comment.