FILE SPLITTING BUG

To fix open /admin/easypopulate_4_split.php

On line 34 change:

PHP Code:
        $split_handle fopen($split_location"a") or die("can't create split file"); 
to:

PHP Code:
        $split_handle fopen($split_location"w") or die("can't create split file"); 
Thank you Sara for making me aware of this!
-chadd