Fixed vB4 Import: Invisible mode should also set "activity_visible"

I think we actually had that previous bug implemented incorrectly.

We had:
PHP:
if (!($this->bitwise($optionBits, 9))) // invisible

Updated that block to:
PHP:
if ($this->bitwise($optionBits, 9)) // invisible
{
   $import->visible = false;
   $import->activity_visible = false;
}
 
Top Bottom