Changeset 7688


Ignore:
Timestamp:
2004-07-01T16:17:12+12:00 (20 years ago)
Author:
mdewsnip
Message:

Fixed a small bug in the code I just added.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/plugins/RecPlug.pm

    r7686 r7688  
    240240    # Re-order the files in the list so any directories ending with .all are moved to the end
    241241    for ($i = scalar(@dir) - 1; $i >= 0; $i--) {
    242     if (-d $dir[$i] && $dir[$i] =~ /\.all$/) {
     242    if (-d &util::filename_cat($dirname, $dir[$i]) && $dir[$i] =~ /\.all$/) {
    243243        push(@dir, splice(@dir, $i, 1));
    244244    }
Note: See TracChangeset for help on using the changeset viewer.