Changeset 16932


Ignore:
Timestamp:
2008-08-21T11:28:14+12:00 (16 years ago)
Author:
ak19
Message:

Fixed error I introduced in the changes committed previously

File:
1 edited

Legend:

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

    r16923 r16932  
    188188    # The images that will get generated may contain percent signs in their src filenames
    189189    # Encode those percent signs themselves so that urls to the imgs refer to them correctly
    190     my $url_to_filehead = $filehead;
    191     $url_to_filehead = &unicode::filename_to_url();
    192     my $url_to_filename_no_path = $filename_no_path;
    193     $url_to_filename_no_path = &unicode::filename_to_url();
     190    my $url_to_filehead = &unicode::filename_to_url($filehead);
     191    my $url_to_filename_no_path = &unicode::filename_to_url($filename_no_path);
    194192   
    195193    # Convert the image to a new type (if required).
Note: See TracChangeset for help on using the changeset viewer.