Changeset 10146


Ignore:
Timestamp:
2005-06-17T15:30:29+12:00 (19 years ago)
Author:
mdewsnip
Message:

Fixed filename_cat so if the first argument is entirely non-ASCII (eg. UTF-8) it won't be ignored.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/util.pm

    r10046 r10146  
    493493    my $first_file = shift(@_);
    494494    my (@filenames) = @_;
    495     #check for non-empty first filename
    496     if ($first_file =~ /\w/) {
     495
     496    # Check for empty first filename
     497    if ($first_file =~ /\S/) {
    497498    unshift(@filenames, $first_file);
    498499    }
Note: See TracChangeset for help on using the changeset viewer.