Changeset 7321 for lang/perl/blosxom

Show
Ignore:
Timestamp:
03/01/08 18:05:46 (5 years ago)
Author:
nyarla
Message:

lang/perl/blosxom/blosxom.nyarla.cgi: entriesがおかしなことになっていたのを修正

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/blosxom/blosxom.nyarla.cgi

    r7286 r7321  
    192192# Define default entries subroutine 
    193193$entries = sub { 
    194     my ( %files, $indexes, %others ) = @_; 
     194    my ( %files, %indexes, %others ); 
    195195    find( 
    196196        sub { 
     
    230230    ); 
    231231 
    232     return ( \%files, \%others, \%indexes ); 
     232    return ( \%files, \%indexes, \%others, ); 
    233233}; 
    234234