Comment by Anonymous at 2008-02-17 12:32:10 (Inosit2/Tracker/132)
In modulehandler.pm line 7 there's :
use IO;
Which is deprecated :
Parameterless "use IO" deprecated at modulehandler.pm line 7A temporary fix should be to replace line 7 with :
use IO qw(Handle Seekable File Pipe Socket Dir);
and remove unneeded parametres.