Francesco - 2016-04-14

Hello,

In order to resolve the problem I edited the files
/var/www/phpipam/app/subnets/scan/subnet-scan.php
/var/www/phpipam/app/subnets/scan/subnet-scan-execute.php

In both of the file I add false to call of the $Admin class
Changing
$Admin = new Admin ($Database); to
$Admin = new Admin ($Database, false);

As far as I undertand if the false is not specified the constructor of the class will check if the user is an "Administrator" using the "private $admin_required = true;" directive of the class.Admin.php

Is it correct to add a false or I'm introducing some different error on the code with this?

Thanks
Francesco