[turba] importing TSV files

Liam Hoekenga liamr@umich.edu
Fri, 19 Apr 2002 01:02:46 -0400 (EDT)


> [19-Apr-2002 00:50:29] PHP Fatal error:  Cannot instantiate non-existent
> class:  data_tsv in /usr/local/projects/webmail/html-ssl/horde-2.1/turba/data.php on line 197

> +        while ($line = explode($delimiter, fgets($fp, 1024)) {

D'oh!  I forget a close paranthesis on the above line.
It should read:

	 while ($line = explode($delimiter, fgets($fp, 1024))) {

Unfortunately, this doesn't seem to allow it to do anything except eat all
of the available processes on my machine.  Curious, because that
construction worked in my (very simple) trial scripts.

Liam