[Date Prev][Date Next][Thread Prev] [Thread Next][Date Index] [Thread Index]

Mod needed for Perl 5.10


  • From: Gunnar Hjalmarsson  
  • Date: Fri, 05 Dec 2008 14:44:50 +0100

Web hosts are gradually replacing earlier Perl versions with Perl 5.10. It has been noted that the version of Tie::File, that is included in Ringlink 3.2 and earlier Ringlink versions, does not work with Perl 5.10. This is what you can do:

The file that needs to be modified is

        [Ringlink library]/Tie/File.pm

Currently line 92 in File.pm looks like:

        seek $file, 0, SEEK_SET     # put it back

Change that line to:

        seek $file, 0, SEEK_SET;    # put it back

i.e. add a semi-colon after SEEK_SET.

--
Gunnar Hjalmarsson


[Date Prev][Date Next][Thread Prev] [Thread Next][Date Index] [Thread Index]